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