SquareDash/Library/PackageCache/com.unity.ai.navigation@2.0.0/Editor/Updater/BuiltInToNavMeshSurfaceConverterContainer.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

13 lines
529 B
C#

#if UNITY_2022_2_OR_NEWER
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.";
}
}
#endif