暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConverterItemInfo.cs 650B

12345678910111213141516
  1. namespace UnityEditor.Rendering.Universal
  2. {
  3. /// <summary>
  4. /// A structure holding the information for each Item that needs to be Converted.
  5. /// Descriptor = The ConverterItemDescriptor this item contain.
  6. /// Index = The index for this item in the list of converter items.
  7. /// </summary>
  8. internal struct ConverterItemInfo
  9. {
  10. /// <summary> The ConverterItemDescriptor this item contain. </summary>
  11. public ConverterItemDescriptor descriptor { get; internal set; }
  12. /// <summary> The index for this item in the list of converter items. </summary>
  13. public int index { get; internal set; }
  14. }
  15. }