暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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