Firstborn/Library/PackageCache/com.unity.render-pipelines..../Editor/Converter/ConverterItemInfo.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

17 lines
661 B
C#

namespace UnityEditor.Rendering.Universal.Converters
{
/// <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; }
}
}