Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseIs this window maximized.
Set this value to maximize / unmaximize a window. If the window is undocked, this value will always be false and setting it will have no effect.
class Maximizer extends EditorWindow { function OnGUI() { maximized = GUILayout.Toggle(maximized, "Maximize window"); } }