【Unity】カスタムエディタで複数のメッシュを描画して位置と回転をリストに入れる

投稿者: | 2021-07-18

カスタムエディタを使って、シーンビューに複数のメッシュを表示し、それらのメッシュの位置と回転の値をリストに入れてみました。

スクリプトをつける

まず、Cubeオブジェクトにスクリプトを付けました。このスクリプトでは、個々の位置と回転を持つクラスを作り、MonoBehaviourを継承したクラスでは、そのクラスのリストを持ちます。

  1. using System.Collections.Generic;
  2. using UnityEngine;
  3.  
  4. [System.Serializable]
  5. public class PositionAndRotation
  6. {
  7. public Vector3 position;
  8. public Quaternion rotation = Quaternion.identity;
  9. }
  10.  
  11. public class PositionsAndRotations : MonoBehaviour
  12. {
  13. public List<PositionAndRotation> instantiationInfo = new List<PositionAndRotation>();
  14. // Start is called before the first frame update
  15. void Start()
  16. {
  17. }
  18.  
  19. }

回転値が(0, 0, 0, 0)だと、カスタムエディタでメッシュを描画するときにエラーになるようです。

なので、回転をQuaternion.identityで初期化しています。また、位置と回転のリストも初期化して、カスタムエディタで要素数をみるときにエラーが出ないようにしています。

カスタムエディタを作る

次にこのスクリプトコンポーネントのためのカスタムエディタを作りました。

  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. using UnityEditor;
  4.  
  5. [CustomEditor(typeof(PositionsAndRotations))]
  6. public class PositionsAndRotationsEditor : Editor
  7. {
  8. Mesh mesh;
  9. Material material;
  10.  
  11. Vector3 pos;
  12. Quaternion rot;
  13.  
  14. PositionsAndRotations targetScript;
  15. List<PositionAndRotation> info;
  16.  
  17. void OnEnable()
  18. {
  19. // スクリプトを取得
  20. targetScript = target as PositionsAndRotations;
  21.  
  22. // 位置と回転のリストを取得
  23. info = targetScript.instantiationInfo;
  24.  
  25. // メッシュ・マテリアルを取得
  26. mesh = targetScript.GetComponent<MeshFilter>().sharedMesh;
  27. material = targetScript.GetComponent<MeshRenderer>().sharedMaterial;
  28. }
  29.  
  30. // インスペクタ
  31. public override void OnInspectorGUI()
  32. {
  33. // リストを一巡
  34. for(int i = 0; i < info.Count; i++)
  35. {
  36. // 要素のインデックス
  37. EditorGUILayout.LabelField(i + "");
  38.  
  39. // 位置のフィールド
  40. EditorGUILayout.Vector3Field("Position",info[i].position);
  41.  
  42. // 回転のフィールド
  43. EditorGUILayout.Vector3Field("Rotation",info[i].rotation.eulerAngles);
  44. }
  45.  
  46. // EndHorizontal()までのボタンを横に並べる
  47. EditorGUILayout.BeginHorizontal();
  48.  
  49. // Addボタンを表示
  50. if(GUILayout.Button("Add"))
  51. {
  52. // Addボタンが押されたときの処理
  53.  
  54. // リストに新しい要素を追加
  55. info.Add(new PositionAndRotation());
  56. }
  57. // 要素数が0でないとき、Removeボタンを表示
  58. if (info.Count > 0 && GUILayout.Button("Remove"))
  59. {
  60. // Removeボタンが押されたときの処理
  61.  
  62. // 最後の要素を削除
  63. info.RemoveAt(info.Count - 1);
  64. }
  65.  
  66. EditorGUILayout.EndHorizontal();
  67. }
  68. // シーンビュー
  69. public void OnSceneGUI()
  70. {
  71. // リストを一巡
  72. for (int i = 0; i < info.Count; i++)
  73. {
  74. // GUI要素を囲う
  75. EditorGUI.BeginChangeCheck();
  76.  
  77. // 移動ツールのとき
  78. if (Tools.current == Tool.Move)
  79. {
  80. // ハンドルで位置を取得
  81. pos = Handles.PositionHandle(info[i].position, info[i].rotation);
  82. rot = info[i].rotation;
  83. }
  84. // 回転ツールのとき
  85. else if (Tools.current == Tool.Rotate)
  86. {
  87. // ハンドルで回転を取得
  88. rot = Handles.RotationHandle(info[i].rotation, info[i].position);
  89. pos = info[i].position;
  90. }
  91.  
  92. // 囲われたGUI要素に変更があれば
  93. if (EditorGUI.EndChangeCheck())
  94. {
  95. // 以降の変更点を記録してアンドゥできるようにする
  96. Undo.RecordObject(target, "Move point");
  97.  
  98. // 位置と回転を設定
  99. info[i].position = pos;
  100. info[i].rotation = rot;
  101.  
  102. }
  103.  
  104. // メッシュを描画
  105. Graphics.DrawMesh(mesh, pos, rot, material, 0);
  106. }
  107.  
  108.  
  109. }
  110. }

このクラスには、CustomEditor属性を付けて、Editorクラスを継承させます。

  1. [CustomEditor(typeof(PositionsAndRotations))]
  2. public class PositionsAndRotationsEditor : Editor

オブジェクトがロードされると、ターゲットのスクリプトが持つ位置と回転のリストやメッシュ、マテリアルを取得します。

  1. Mesh mesh;
  2. Material material;
  3.  
  4. Vector3 pos;
  5. Quaternion rot;
  6.  
  7. PositionsAndRotations targetScript;
  8. List<PositionAndRotation> info;
  9.  
  10. void OnEnable()
  11. {
  12. // スクリプトを取得
  13. targetScript = target as PositionsAndRotations;
  14.  
  15. // 位置と回転のリストを取得
  16. info = targetScript.instantiationInfo;
  17.  
  18. // メッシュ・マテリアルを取得
  19. mesh = targetScript.GetComponent<MeshFilter>().sharedMesh;
  20. material = targetScript.GetComponent<MeshRenderer>().sharedMaterial;
  21. }

今回は、SerializedObjectやSerializedPropertyを使うとエラーになるようなので、ターゲットのスクリプトを取得して直接値を変えています。

また、インスペクタでリストのデフォルトのレイアウトでは、+ボタンで要素を追加すると、回転値が(0, 0, 0, 0)になってしまうので、インスペクタもカスタマイズしました。

  1. // インスペクタ
  2. public override void OnInspectorGUI()
  3. {
  4. // リストを一巡
  5. for(int i = 0; i < info.Count; i++)
  6. {
  7. // 要素のインデックス
  8. EditorGUILayout.LabelField(i + "");
  9.  
  10. // 位置のフィールド
  11. EditorGUILayout.Vector3Field("Position",info[i].position);
  12.  
  13. // 回転のフィールド
  14. EditorGUILayout.Vector3Field("Rotation",info[i].rotation.eulerAngles);
  15. }
  16.  
  17. // EndHorizontal()までのボタンを横に並べる
  18. EditorGUILayout.BeginHorizontal();
  19.  
  20. // Addボタンを表示
  21. if(GUILayout.Button("Add"))
  22. {
  23. // Addボタンが押されたときの処理
  24.  
  25. // リストに新しい要素を追加
  26. info.Add(new PositionAndRotation());
  27. }
  28. // 要素数が0でないとき、Removeボタンを表示
  29. if (info.Count > 0 && GUILayout.Button("Remove"))
  30. {
  31. // Removeボタンが押されたときの処理
  32.  
  33. // 最後の要素を削除
  34. info.RemoveAt(info.Count - 1);
  35. }
  36.  
  37. EditorGUILayout.EndHorizontal();
  38. }

ここでは、まずリストの要素数の数だけそのインデックスと位置、回転を表示しています。その後、リストに要素を追加・削除するボタンを表示しています。

そして、追加ボタンを押したときに位置と回転を持つクラスをnewキーワードでインスタンス化してリストに追加すると、初期化したとおりに値が(0, 0, 0, 1)になりました。

  1. // Addボタンを表示
  2. if(GUILayout.Button("Add"))
  3. {
  4. // Addボタンが押されたときの処理
  5.  
  6. // リストに新しい要素を追加
  7. info.Add(new PositionAndRotation());
  8. }

削除ボタンはリストの要素数が0でないときだけ表示します。

  1. // 要素数が0でないとき、Removeボタンを表示
  2. if (info.Count > 0 && GUILayout.Button("Remove"))
  3. {
  4. // Removeボタンが押されたときの処理
  5.  
  6. // 最後の要素を削除
  7. info.RemoveAt(info.Count - 1);
  8. }
要素数が0
要素数が1

シーンビューでもリストの要素を1つずつ見ていきます。

  1. // シーンビュー
  2. public void OnSceneGUI()
  3. {
  4. // リストを一巡
  5. for (int i = 0; i < info.Count; i++)
  6. {
  7. // GUI要素を囲う
  8. EditorGUI.BeginChangeCheck();
  9.  
  10. // 移動ツールのとき
  11. if (Tools.current == Tool.Move)
  12. {
  13. // ハンドルで位置を取得
  14. pos = Handles.PositionHandle(info[i].position, info[i].rotation);
  15. rot = info[i].rotation;
  16. }
  17. // 回転ツールのとき
  18. else if (Tools.current == Tool.Rotate)
  19. {
  20. // ハンドルで回転を取得
  21. rot = Handles.RotationHandle(info[i].rotation, info[i].position);
  22. pos = info[i].position;
  23. }
  24.  
  25. // 囲われたGUI要素に変更があれば
  26. if (EditorGUI.EndChangeCheck())
  27. {
  28. // 以降の変更点を記録してアンドゥできるようにする
  29. Undo.RecordObject(target, "Move point");
  30.  
  31. // 位置と回転を設定
  32. info[i].position = pos;
  33. info[i].rotation = rot;
  34.  
  35. }
  36.  
  37. // メッシュを描画
  38. Graphics.DrawMesh(mesh, pos, rot, material, 0);
  39. }
  40.  
  41.  
  42. }

Tools.currentを使って、現在選択中のツールによって場合分けしています。移動ツールを使っているときはハンドルで位置だけを変更し、回転ツールでは回転だけを変更します。

  1. // GUI要素を囲う
  2. EditorGUI.BeginChangeCheck();
  3.  
  4. // 移動ツールのとき
  5. if (Tools.current == Tool.Move)
  6. {
  7. // ハンドルで位置を取得
  8. pos = Handles.PositionHandle(info[i].position, info[i].rotation);
  9. rot = info[i].rotation;
  10. }
  11. // 回転ツールのとき
  12. else if (Tools.current == Tool.Rotate)
  13. {
  14. // ハンドルで回転を取得
  15. rot = Handles.RotationHandle(info[i].rotation, info[i].position);
  16. pos = info[i].position;
  17. }

ハンドルの変更を知るために、これらをEditorGUI.BeginChangeCheckメソッドとEditorGUI.EndChangeCheckメソッドで囲います。変更があればEditorGUI.EndChangeCheckがtrueになります。その時にはUndo.RecordObjectメソッドの後に、リストの要素に位置と回転を設定します。

  1. // 囲われたGUI要素に変更があれば
  2. if (EditorGUI.EndChangeCheck())
  3. {
  4. // 以降の変更点を記録してアンドゥできるようにする
  5. Undo.RecordObject(target, "Move point");
  6.  
  7. // 位置と回転を設定
  8. info[i].position = pos;
  9. info[i].rotation = rot;
  10.  
  11. }

Undo.RecordObjectの後にリストの値を変更しないと、変更点が記録されず、Ctrl + Zで元に戻せなくなるので、Handles.PositionHandleメソッドなどの戻り値は一旦別の変数に入れて、リストにはここで設定しています。

その後、メッシュを描画します。

  1. // メッシュを描画
  2. Graphics.DrawMesh(mesh, pos, rot, material, 0);

ハンドルで値を設定する

インスペクタでAddボタンを押すと、シーンビューでワールド空間の原点にこのスクリプトを追加したCubeと同じメッシュとマテリアルのCubeが描画されます。

ハンドルを使って位置と回転を変えると、インスペクタの値も変わります。

Addボタンでさらにメッシュを増やして、別々の位置と回転の値を設定できます。

別のオブジェクトを選択していると、これらのメッシュは描画されません。

プレハブ化して値を変える

これらの値を、インスタンス化するときに使ってみます。まず、このCubeをプレハブ化しました。Projectウィンドウにあるプレハブアセットはシーンビューで設定した値を持っています。

プレハブの値をハンドルで変えたいときは、プレハブをシーンビューやヒエラルキーウィンドウにドラッグアンドドロップしてインスタンス化し、ヒエラルキーのこのインスタンスの右にある矢印を選択するか、インスタンスを選択してインスペクタの「Open」ボタンをクリックします。

すると、シーンビューでインスタンスの周りの環境がうっすらと見えた状態のプレハブモードでプレハブアセットを開けます。

プレハブバーで「Normal」を選択すると、これらの環境が通常の色で表示されます。

この状態でインスペクタの「Add」ボタンを押して要素を追加し、ハンドルで値を変更できます。

プレハブモードを終了するには、ヒエラルキーウィンドウの左矢印を選択します。

これでプレハブアセットの値を変えられました。

設定した位置・回転にインスタンス化する

このプレハブをインスタンス化するために、空のゲームオブジェクトにスクリプトを付けて、プレハブをアタッチしました。

スクリプトでは、Instantiateメソッドの引数に、プレハブのスクリプトが持つリストの値を渡します。

  1. using UnityEngine;
  2.  
  3. public class InstantiateTest4 : MonoBehaviour
  4. {
  5. // プレハブ
  6. [SerializeField] PositionsAndRotations cube;
  7.  
  8. // Start is called before the first frame update
  9. void Start()
  10. {
  11. // すべての位置・回転にインスタンスを作る
  12. for (int i = 0; i < cube.instantiationInfo.Count; i++)
  13. {
  14. Instantiate(cube, cube.instantiationInfo[i].position, cube.instantiationInfo[i].rotation);
  15. }
  16.  
  17. }
  18.  
  19. }

プレイモードにすると、設定した位置・回転でインスタンスが作られました。

コメントを残す

メールアドレスが公開されることはありません。