Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorWindow.Show

Switch to Manual
public void Show();
public void Show(bool immediateDisplay);

Parameters

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();
	    }
	}