Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

BuiltInToNavMeshSurfaceConverterContainer.cs 529B

123456789101112
  1. #if UNITY_2022_2_OR_NEWER
  2. using Unity.AI.Navigation.Editor.Converter;
  3. namespace Unity.AI.Navigation.Updater
  4. {
  5. internal sealed class BuiltInToNavMeshSurfaceConverterContainer : SystemConverterContainer
  6. {
  7. public override string name => "NavMesh Updater";
  8. public override string info => "The NavMesh updater performs the following tasks:\n* Converts scenes baked with the built-in NavMesh to the component-based version.\n* Replaces Navigation Static flags with NavMeshModifier components.";
  9. }
  10. }
  11. #endif