public void ShowModal ();

描述

显示模态编辑器窗口。

在此窗口关闭之前,将无法访问其他窗口,也无法进行任何脚本重新编译。

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); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961