EditorWindow.GetWindow.<T>
static function GetWindow.<T> () : T
static function GetWindow.<T> (utility : bool) : T
static function GetWindow.<T> (utility : bool, title : string) : T
static function GetWindow.<T> (utility : bool, title : string, focus : bool) : T
Parameters
Name | Description |
T |
the type of the window. Must derive from EditorWindow.
|
utility |
set this to true, to create a floating utility window, false to create a normal window.
|
title |
if GetWindow creates a new window, it will get this title. If this value is null, use the class name as title.
|
Description
Returns the first EditorWindow of type T which is currently on the screen.
If there is none, creates and shows new window and returns the instance of it.