EditorWindow.GetWindow 获取窗口

static function GetWindow (t : System.Type, utility : bool = false, title : string = null, focus : bool = true) : EditorWindow

Parameters参数

Description描述

Returns the first EditorWindow of type t which is currently on the screen.

返回屏幕上类型t的当前的第一个编辑器窗口。

If there is none, creates and shows new window and returns the instance of it.

如果没有,创建并显示新的窗口并返回它的实例。

EditorWindow.GetWindow 获取窗口

Simple Empty non-dockable window.
简单的空的非停靠窗口。

// Simple script that creates a new non-dockable window
//创建一个新的非停靠窗口

import UnityEditor;

class GetWindowEx extends EditorWindow {
	@MenuItem("Example/Display simple Window")
	static function Initialize() {
		var window : GetWindowEx = EditorWindow.GetWindow(GetWindowEx, true, "My Empty Window");
	}
}
最后修改:2011年6月24日 Friday 15:56

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。