いんでぃーづ

ゲームいろいろ、いろいろ自由

Unity : EditorWindowのタイトルを変更する

EditorWindow を作ると、タブに表示される名前がデフォルトだと namespace を含めたクラス名になる

変更したい場合は GetWindow の引数に title を指定する

// ウインドウを作成
MyEditorWindow window = (MyEditorWindow)EditorWindow.GetWindow(
    t: typeof(MyEditorWindow),
    utility: false,
    title: "ぼくのエディタウインドウ",
    focus: true
);

Unity - Scripting API: EditorWindow.GetWindow


“Unity” and Unity logos are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere, and are used under license.


免責事項

当サイトの広告バナー、リンクによって提供される情報、サービス内容について、当サイトは一切の責任を負いません。

また、当サイトの情報を元にユーザ様が不利益を被った場合にも、当サイトは一切の責任を負いません。

すべて自己責任でお願いします。