study/first_study/Library/PackageCache/com.unity.ai.navigation@5218e4bf7edc/Editor/Updater/NavigationConverterContainer.cs
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09: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.";
}
}