public void Close ();

描述

关闭编辑器窗口。

执行此操作将销毁编辑器窗口。

\ 显示 Close() 的简单示例

using UnityEngine;
using UnityEditor;

public class ScriptExample : EditorWindow { [MenuItem("Example/Close() Example")] static void Init() { ScriptExample window = (ScriptExample)EditorWindow.GetWindowWithRect(typeof(ScriptExample), new Rect(0, 0, 200, 100)); window.Show(); }

void OnGUI() { EditorGUILayout.LabelField("EditorWindow.Close example", EditorStyles.wordWrappedLabel);

if (GUILayout.Button("Close!")) this.Close(); } }