No Description
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.

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