Отображение определенных свойств элементов массива в редакторе Unity в зависимости от других свойств этих элементов массива
У меня есть класс MyClass
который имеет перечисление и свойства. В зависимости от перечисления, я хочу отобразить определенные свойства в редакторе.
Есть такие перечисления { first, second} и свойства health, step, position. Если вы выберете первый, то отобразите имя и шаг в редакторе, если второй, шаг и положение. Я разобрался, как это сделать для класса монобедения. И как это сделать, чтобы массив имел динамические свойства для каждого элемента массива? На рисунке выделены поля, которые я хотел бы видеть, когда я выбираю этот список. Заранее спасибо. Извините мой плохой английский
2 ответа
Вот пример использования ReaorderableList
от UnityEditorInternal
(Я в основном изучил это, используя этот крутой турориал), который я считаю гораздо более гибким и чистым, чем прямое все OnInspectorGUI
,
И дополнительная функция, как следует из названия: элементы могут быть выбраны и переупорядочены с помощью перетаскивания + падение!
Класс элемента List
[Serializeable]
puclic class YourClass
{
public enum YourEnum
{
first,
second
}
public YourEnum Enum;
public string Name;
public int Step;
public Vector3 Position;
}
Класс, содержащий список
public class YourOtherClass : MonoBehaviour
{
public List<YourClass> YourList = new List<YourClass>();
// It works the same for arrays if you prefere that, no need to change the inspector
// Note that in this case you can't initalize it here yet but the Inspector does that for you
// public YourClass[] YourList ;
}
редактор
[CustomEditor(typeof(YourOtherClass))]
public class YourOtherClassEditor : Editor
{
// This will be the serialized "copy" of YourOtherClass.YourList
private SerializedProperty YourList;
private ReorderableList YourReorderableList;
private void OnEnable()
{
// Step 1 "link" the SerializedProperties to the properties of YourOtherClass
YourList = serializedObject.FindProperty("YourList");
// Step 2 setup the ReorderableList
YourReorderableList = new ReorderableList(serializedObject, YourList)
{
// Can your objects be dragged an their positions changed within the List?
draggable = true,
// Can you add elements by pressing the "+" button?
displayAdd = true,
// Can you remove Elements by pressing the "-" button?
displayRemove = true,
// Make a header for the list
drawHeaderCallback = rect =>
{
EditorGUI.LabelField(rect, "This are your Elements");
},
// Now to the interesting part: Here you setup how elements look like
drawElementCallback = (rect, index, active, focused) =>
{
// Get the currently to be drawn element from YourList
var element = YourList.GetArrayElementAtIndex(index);
// Get the elements Properties into SerializedProperties
var Enum = element.FindPropertyRelative("Enum");
var Name = element.FindPropertyRelative("Name");
var Step = element.FindPropertyRelative("Step");
var Position = element.FindPropertyRelative("Position");
// Draw the Enum field
EditorGUI.PropertyField(new Rect(rect.x, rect.y, rect.width, EditorGUIUtility.singleLineHeight), Enum);
// start the next property in the next line
rect.y += EditorGUIUtility.singleLineHeight;
// only show Name field if selected "first"
if ((YourClass.YourEnum)Enum.intValue == YourClass.YourEnum.first)
{
EditorGUI.PropertyField(new Rect(rect.x, rect.y, rect.width, EditorGUIUtility.singleLineHeight), Name);
// start the next property in the next line
rect.y += EditorGUIUtility.singleLineHeight;
}
// Draw the Step field
EditorGUI.PropertyField(new Rect(rect.x, rect.y, rect.width, EditorGUIUtility.singleLineHeight), Step);
// start the next property in the next line
rect.y += EditorGUIUtility.singleLineHeight;
// only show Step field if selected "seconds"
if ((YourClass.YourEnum)Enum.intValue == YourClass.YourEnum.second)
{
EditorGUI.PropertyField(new Rect(rect.x, rect.y, rect.width, EditorGUIUtility.singleLineHeight), Position);
}
},
// And since we have more than one line (default) you'll have to configure
// how tall your elements are. Luckyly in your example it will always be exactly
// 3 Lines in each case. If not you would have to change this.
// In some cases it becomes also more readable if you use one more Line as spacer between the elements
elementHeight = EditorGUIUtility.singleLineHeight * 3,
//alternatively if you have different heights you would use e.g.
//elementHeightCallback = index =>
//{
// var element = YourList.GetArrayElementAtIndex(index);
// var Enum = element.FindPropertyRelative("Enum");
// switch ((YourClass.YourEnum)Enum.intValue)
// {
// case YourClass.YourEnum.first:
// return EditorGUIUtility.singleLineHeight * 3;
// case YourClass.YourEnum.second:
// return EditorGUIUtility.singleLineHeight * 5;
// default:
// return EditorGUIUtility.singleLineHeight;
// }
//}
// optional: Set default Values when adding a new element
// (otherwise the values of the last list item will be copied)
onAddCallback = list =>
{
// The new index will be the current List size ()before adding
var index = list.serializedProperty.arraySize;
// Since this method overwrites the usual adding, we have to do it manually:
// Simply counting up the array size will automatically add an element
list.serializedProperty.arraySize++;
list.index = index;
var element = list.serializedProperty.GetArrayElementAtIndex(index);
// again link the properties of the element in SerializedProperties
var Enum = element.FindPropertyRelative("Enum");
var Name = element.FindPropertyRelative("Name");
var Step = element.FindPropertyRelative("Step");
var Position = element.FindPropertyRelative("Position");
// and set default values
Enum.intValue = (int) YourClass.YourEnum.first;
Name.stringValue = "";
Step.intValue = 0;
Position.vector3Value = Vector3.zero;
}
};
}
public override void OnInspectorGUI()
{
// copy the values of the real Class to the linked SerializedProperties
serializedObject.Update();
// print the reorderable list
YourReorderableList.DoLayoutList();
// apply the changed SerializedProperties values to the real class
serializedObject.ApplyModifiedProperties();
}
}
не забудьте использовать
using UnityEditor;
using UnityEditorInternal;
Результат:
Если предположить, MyClass
определяется так:
public class MyClass {
public enum MyEnumType {first, second} ;
public MyEnumType enumNumber;
public String name;
public int step;
public Vector3 position;
}
Есть три шага:
1. Создайте собственную обертку списка MyCustomList
// Script name : MyCustomList.cs
using UnityEngine;
using System;
using System.Collections.Generic; // Import the System.Collections.Generic class to give us access to List<>
public class MyCustomList: MonoBehaviour {
//This is our list we want to use to represent our class as an array.
public List<MyClass> MyList = new List<MyClass>(1);
}
2. CustomEditor для оболочки: MyCustomListEditor
// Script name : MyCustomListEditor.cs
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
[CustomEditor(typeof(MyCustomList))]
public class MyCustomListEditor : Editor {
MyCustomList t;
SerializedObject GetTarget;
SerializedProperty ThisList;
int ListSize;
void OnEnable(){
t = (MyCustomList)target;
GetTarget = new SerializedObject(t);
ThisList = GetTarget.FindProperty("MyList"); // Find the List in our script and create a reference of it
}
public override void OnInspectorGUI(){
//Update our list
GetTarget.Update();
//Resize our list
EditorGUILayout.Space ();
EditorGUILayout.Space ();
ListSize = ThisList.arraySize;
ListSize = EditorGUILayout.IntField ("List Size", ListSize);
if(ListSize != ThisList.arraySize){
while(ListSize > ThisList.arraySize){
ThisList.InsertArrayElementAtIndex(ThisList.arraySize);
}
while(ListSize < ThisList.arraySize){
ThisList.DeleteArrayElementAtIndex(ThisList.arraySize - 1);
}
}
EditorGUILayout.Space ();
EditorGUILayout.Space ();
//Display our list to the inspector window
for(int i = 0; i < ThisList.arraySize; i++){
SerializedProperty MyListRef = ThisList.GetArrayElementAtIndex(i);
SerializedProperty MyEnum= MyListRef.FindPropertyRelative("enumName");
SerializedProperty MyName = MyListRef.FindPropertyRelative("name");
SerializedProperty MyStep = MyListRef.FindPropertyRelative("step");
SerializedProperty MyPosition = MyListRef.FindPropertyRelative("position");
EditorGUILayout.PropertyField(MyEnum);
int MyEnumIndex = MyEnum.enumValueIndex;
// Show/hide the properties based on the index of the enumValue.
if (MyEnumIndex == (int)MyClass.MyEnumType.first) {
EditorGUILayout.PropertyField(MyName);
}
if (MyEnumIndex == (int)MyClass.MyEnumType.second) {
EditorGUILayout.PropertyField(MyPosition);
}
EditorGUILayout.PropertyField(MyStep);
EditorGUILayout.Space ();
//Remove this index from the List
if(GUILayout.Button("Remove This Index (" + i.ToString() + ")")){
ThisList.DeleteArrayElementAtIndex(i);
}
EditorGUILayout.Space ();
EditorGUILayout.Space ();
EditorGUILayout.Space ();
EditorGUILayout.Space ();
}
//Apply the changes to our list
GetTarget.ApplyModifiedProperties();
}
}
3. Изменить BigClass
использовать MyCustomList
вместо List<MyClass>
public class BigClass : MonoBehaviour {
MyCustomList myList = new MyCustomList();
// .. Whatever else is in BigClass
}
Это принято из этого поста на форумах Unity.