penis/Library/PackageCache/com.unity.render-pipelines.universal@3696a2e8b4ac/Editor/Converter/ConverterItemInfo.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

17 lines
650 B
C#

namespace UnityEditor.Rendering.Universal
{
/// <summary>
/// A structure holding the information for each Item that needs to be Converted.
/// Descriptor = The ConverterItemDescriptor this item contain.
/// Index = The index for this item in the list of converter items.
/// </summary>
internal struct ConverterItemInfo
{
/// <summary> The ConverterItemDescriptor this item contain. </summary>
public ConverterItemDescriptor descriptor { get; internal set; }
/// <summary> The index for this item in the list of converter items. </summary>
public int index { get; internal set; }
}
}