EditorWindow.Showfunction Show (immediateDisplay : boolean = false) : voidDescriptionShow the EditorWindow.
// 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(); } } |

