Manual     Reference     Scripting  
  
Scripting > Editor Classes > EditorWindow   

EditorWindow.Show  

function Show (immediateDisplay : boolean = false) : void

Description

Show the EditorWindow.


Empty editor window.

// Create an empty editor window and show it

class EditorWindowPosition extends EditorWindow {
@MenuItem ("Example/Window position usage")
static function Init () {
var window = EditorWindow.GetWindow(EditorWindowPosition);
window.Show();
}
}