minesweeper_game/Library/PackageCache/com.unity.ai.navigation@c74b2724ed42/Editor/Updater/NavigationConverterContainer.cs
2025-03-15 14:30:26 -04:00

13 lines
617 B
C#

using Unity.AI.Navigation.Editor.Converter;
namespace Unity.AI.Navigation.Updater
{
internal sealed class NavigationConverterContainer : SystemConverterContainer
{
public override string name => "Navigation Updater";
public override string info => "* Converts scenes baked with the built-in NavMesh to the component-based version.\n" +
"* Replaces Navigation Static flags with NavMeshModifier components.\n" +
"* Turns OffMesh Link components into NavMesh Link components and preserves their properties.";
}
}