Files
MRCS/Assets/Plugins/Editor/RelationsInspector/RelationsInspectorMenuItem.cs
2025-10-31 12:25:48 +08:00

12 lines
248 B
C#

using UnityEditor;
using RelationsInspector;
public class RelationsInspectorMenuItem
{
[MenuItem("Window/RelationsInspector")]
static void SpawnWindow()
{
EditorWindow.GetWindow<RelationsInspectorWindow>("Relations", typeof(SceneView));
}
}