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