Prefabなら簡単
Prefab であれば一括で変更するのは容易です。
ただ、別のオブジェクト同士を一つのジャンルとして区分し、リネームしたい時や、
名前のおしりにインデックスをつけて整理したいときなどにはそうもいきません。
デモ
Hierarchy上で選択したオブジェクトの全ての子に対して
インデックス付きでリネームするEditor拡張です。
コード
何気にEditorWindowの拡張機能を使いこなせていなかったので
しっかりとメモしておこうと思います。
# 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.width
、Screen.height
は画面の大きさを取得できるので調節に便利です。
GUIを横並びにする
画像のように並べる方法です。
EditorGUILayout.BeginHorizontal();
//横並びにしたいGUI達
GUILayout.EndHorizontal();
Hierarchy上で選択中のオブジェクトの取得
Selection.activeGameObject
で選択中のオブジェクトが取得可能です。
transform.GetChild(i)
で子のオブジェクトを順番に取得してリネームしています。
transform.childCount
が子のオブジェクトが無い場合には0になるので
ループの条件ではじかれてエラーは出ません。
まとめ
Selection.activeGameObject
のおかげでいろんなEditor拡張ができるようになると思います。
あると便利な機能はどんどんEditorWindow化していこうと思います。