1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Unity(C#)】EditorWindowで一括リネーム

Last updated at Posted at 2019-09-28

Prefabなら簡単

Prefab であれば一括で変更するのは容易です。

ただ、別のオブジェクト同士を一つのジャンルとして区分し、リネームしたい時や、
名前のおしりにインデックスをつけて整理したいときなどにはそうもいきません。

デモ

Hierarchy上で選択したオブジェクトの全ての子に対して
インデックス付きでリネームするEditor拡張です。

ReName.gif

コード

何気にEditorWindowの拡張機能を使いこなせていなかったので
しっかりとメモしておこうと思います。

ツールバーに表示されるMyToolsから実行
# if UNITY_EDITOR
using UnityEngine;
using UnityEditor;

public class RenameAllChildren : EditorWindow
{
    static EditorWindow window;
    string textField = "";
    
    [MenuItem("MyTools/RenameAllChildren")]
    static void ShowWindow()
    {
        window = EditorWindow.GetWindow(typeof(RenameAllChildren));
        window.position =new Rect(Screen.width*2, Screen.height/2, 300,100);
    }

    void OnGUI()
    {
        GUILayout.Space(25);
        
        EditorGUILayout.BeginHorizontal();
        
        GUILayout.Label( "ObjectName" );
        textField = GUILayout.TextField( textField , GUILayout.Width(window.position.width/1.5f));
       
        GUILayout.EndHorizontal();
        GUILayout.Space(25);
        
        if( GUILayout.Button( "Change all names of ChildrenObject" ) )
        {
            int num = 1;
            
            GameObject selectionObj = Selection.activeGameObject;

            for (int i = 0; i < selectionObj.transform.childCount;i++)
            {
                Transform childTransform = selectionObj.transform.GetChild(i);

                childTransform.name = textField + num;
                num++;
            }
        }
    }
}
# endif

EditorWindowの大きさ、位置調整

EditorWindow.GetWindow();とするのではなく、
一度変数に入れて.positionでプロパティを編集できるようにします。

変数を用意
    window = EditorWindow.GetWindow(typeof(RenameAllChildren));
    window.position = new Rect(Screen.width*2, Screen.height/2, 300,100);

また、Screen.widthScreen.heightは画面の大きさを取得できるので調節に便利です。

GUIを横並びにする

画像のように並べる方法です。

Rename.PNG

EditorGUILayout.BeginHorizontal();
//横並びにしたいGUI達
GUILayout.EndHorizontal();

Hierarchy上で選択中のオブジェクトの取得

Selection.activeGameObjectで選択中のオブジェクトが取得可能です。

transform.GetChild(i)で子のオブジェクトを順番に取得してリネームしています。

transform.childCountが子のオブジェクトが無い場合には0になるので
ループの条件ではじかれてエラーは出ません。

まとめ

Selection.activeGameObjectのおかげでいろんなEditor拡張ができるようになると思います。
あると便利な機能はどんどんEditorWindow化していこうと思います。

参考リンク:Hierarchy上で選択したオブジェクトの子どもを一括でNavMeshArea設定を変える方法

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?