版本: Unity 6 (6000.0)
语言英语
  • C#

EditorWindow.ShowModal

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读用户提出的每个更改建议,并在适用时进行更新。

关闭

提交失败

由于某种原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public void ShowModal();

描述

显示模态编辑器窗口。

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

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);
    }
}