StellarXipher/Library/PackageCache/com.unity.ai.navigation@9f76b145f0a8/Editor/Updater/BuiltInToNavMeshSurfaceConverterContainer.cs
2025-02-06 16:45:46 -05:00

11 lines
496 B
C#

using Unity.AI.Navigation.Editor.Converter;
namespace Unity.AI.Navigation.Updater
{
internal sealed class BuiltInToNavMeshSurfaceConverterContainer : SystemConverterContainer
{
public override string name => "NavMesh Updater";
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.";
}
}