显示模态编辑器窗口。
在此窗口关闭之前,将无法访问其他窗口,也无法进行任何脚本重新编译。
using UnityEditor; using UnityEngine; using UnityEngine.UIElements;
public class MyWindow : EditorWindow { [MenuItem("Window/My Window")] public static void ShowExample() { MyWindow wnd = GetWindow<MyWindow>(); wnd.titleContent = new GUIContent("My Window Title"); wnd.ShowModal(); }
public void OnEnable() { VisualElement root = rootVisualElement;
VisualElement label = new Label("Hello World!"); root.Add(label); } }