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

SystemConverterContainer.cs 783B

12345678910111213141516171819202122
  1. #if UNITY_2022_2_OR_NEWER
  2. namespace Unity.AI.Navigation.Editor.Converter
  3. {
  4. /// <summary>
  5. /// A class to contain converters. This is for a common set of converters.
  6. /// For example: Converters that is for Built-in to URP would have it's own container.
  7. /// </summary>
  8. public abstract class SystemConverterContainer
  9. {
  10. /// <summary>
  11. /// The name of the Container. This will show up int the UI.
  12. /// </summary>
  13. public abstract string name { get; }
  14. /// <summary>
  15. /// The information for this container.
  16. /// This will be shown in the UI to tell the user some information about the converters that this container are targeting.
  17. /// </summary>
  18. public abstract string info { get; }
  19. }
  20. }
  21. #endif