UnityGame/Library/PackageCache/com.unity.ai.navigation/Editor/Updater/NavMeshUpdaterEditor.cs

21 lines
626 B
C#
Raw Normal View History

2024-10-27 10:53:47 +03:00
using Unity.AI.Navigation.Editor.Converter;
using UnityEditor;
using UnityEngine;
namespace Unity.AI.Navigation.Updater
{
internal static class NavMeshUpdaterEditor
{
[MenuItem("Window/AI/NavMesh Updater", false, 50)]
public static void ShowWindow()
{
SystemConvertersEditor wnd = EditorWindow.GetWindow<SystemConvertersEditor>();
wnd.titleContent = new GUIContent("NavMesh Updater");
wnd.DontSaveToLayout(wnd);
wnd.maxSize = new Vector2(650f, 4000f);
wnd.minSize = new Vector2(650f, 400f);
wnd.Show();
}
}
}