お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
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"); } }