Files
CartoonFPS/Library/PackageCache/com.unity.ai.navigation@eb5635ad590d/Editor/Updater/NavigationUpdaterEditor.cs

21 lines
616 B
C#
Raw Normal View History

2025-08-05 09:30:40 +01:00
using Unity.AI.Navigation.Editor.Converter;
using UnityEditor;
using UnityEngine;
namespace Unity.AI.Navigation.Updater
{
internal static class NavigationUpdaterEditor
{
[MenuItem("Window/AI/Navigation Updater", false, 50)]
public static void ShowWindow()
{
var wnd = EditorWindow.GetWindow<SystemConvertersEditor>();
wnd.titleContent = new GUIContent("Navigation Updater");
wnd.DontSaveToLayout(wnd);
wnd.maxSize = new Vector2(650f, 4000f);
wnd.minSize = new Vector2(650f, 400f);
wnd.Show();
}
}
}