暫無描述
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 687B

123456789101112131415161718
  1. #if UNITY_2022_2_OR_NEWER
  2. namespace Unity.AI.Navigation.Editor.Converter
  3. {
  4. /// <summary>
  5. /// A structure holding the information for each Item that needs to be Converted.
  6. /// Descriptor = The ConverterItemDescriptor this item contain.
  7. /// Index = The index for this item in the list of converter items.
  8. /// </summary>
  9. internal struct ConverterItemInfo
  10. {
  11. /// <summary> The ConverterItemDescriptor this item contain. </summary>
  12. public ConverterItemDescriptor descriptor { get; internal set; }
  13. /// <summary> The index for this item in the list of converter items. </summary>
  14. public int index { get; internal set; }
  15. }
  16. }
  17. #endif