| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- using System;
- using UnityEditor;
- using UnityEngine;
- using System.Collections.Generic;
- namespace Cinemachine.Editor
- {
- [CustomEditor(typeof(CinemachineTargetGroup))]
- internal sealed class CinemachineTargetGroupEditor : BaseEditor<CinemachineTargetGroup>
- {
- private UnityEditorInternal.ReorderableList mTargetList;
- /// <summary>Get the property names to exclude in the inspector.</summary>
- /// <param name="excluded">Add the names to this list</param>
- protected override void GetExcludedPropertiesInInspector(List<string> excluded)
- {
- base.GetExcludedPropertiesInInspector(excluded);
- excluded.Add(FieldPath(x => x.m_Targets));
- }
- void OnEnable()
- {
- mTargetList = null;
- }
- public override void OnInspectorGUI()
- {
- BeginInspector();
- DrawRemainingPropertiesInInspector();
- if (mTargetList == null)
- SetupTargetList();
- EditorGUI.BeginChangeCheck();
- mTargetList.DoLayoutList();
- DisplayErrorMessageForDescendants();
- if (EditorGUI.EndChangeCheck())
- serializedObject.ApplyModifiedProperties();
- }
- void DisplayErrorMessageForDescendants()
- {
- String indices = "";
- for (int i = 0; i < Target.m_Targets.Length; ++i)
- {
- if (Target.m_Targets[i].target != null && Target.m_Targets[i].target.IsChildOf(Target.Transform))
- {
- indices += i + ", ";
- }
- }
- if (indices.Length > 0)
- {
- indices = indices.Substring(0, indices.Length - 2);
- EditorGUILayout.HelpBox(
- "Group members at index {" + indices + "} are child gameobjects of the group. " +
- "This is not supported and may cause undefined behaviour. Unparent them from the group.",
- MessageType.Error);
- }
- }
- void SetupTargetList()
- {
- float vSpace = 2;
- float floatFieldWidth = EditorGUIUtility.singleLineHeight * 3.5f;
- float hBigSpace = EditorGUIUtility.singleLineHeight * 2 / 3;
- mTargetList = new UnityEditorInternal.ReorderableList(
- serializedObject, FindProperty(x => x.m_Targets),
- true, true, true, true);
- // Needed for accessing field names as strings
- CinemachineTargetGroup.Target def = new CinemachineTargetGroup.Target();
- mTargetList.drawHeaderCallback = (Rect rect) =>
- {
- rect.width -= EditorGUIUtility.singleLineHeight + 2 * (floatFieldWidth + hBigSpace);
- Vector2 pos = rect.position; pos.x += EditorGUIUtility.singleLineHeight;
- rect.position = pos;
- EditorGUI.LabelField(rect, "Target");
- pos.x += rect.width + hBigSpace; rect.width = floatFieldWidth + hBigSpace; rect.position = pos;
- EditorGUI.LabelField(rect, "Weight");
- pos.x += rect.width; rect.position = pos;
- EditorGUI.LabelField(rect, "Radius");
- };
- mTargetList.drawElementCallback
- = (Rect rect, int index, bool isActive, bool isFocused) =>
- {
- SerializedProperty elemProp = mTargetList.serializedProperty.GetArrayElementAtIndex(index);
- rect.y += vSpace;
- rect.height = EditorGUIUtility.singleLineHeight;
- Vector2 pos = rect.position;
- //rect.width -= hSpace + 2 * EditorGUIUtility.singleLineHeight;
- rect.width -= 2 * (floatFieldWidth + hBigSpace);
- EditorGUI.PropertyField(rect, elemProp.FindPropertyRelative(() => def.target), GUIContent.none);
- float oldWidth = EditorGUIUtility.labelWidth;
- EditorGUIUtility.labelWidth = EditorGUIUtility.singleLineHeight;
- pos.x += rect.width; rect.width = floatFieldWidth + hBigSpace; rect.position = pos;
- EditorGUI.PropertyField(rect, elemProp.FindPropertyRelative(() => def.weight), new GUIContent(" "));
- pos.x += rect.width; rect.position = pos;
- EditorGUI.PropertyField(rect, elemProp.FindPropertyRelative(() => def.radius), new GUIContent(" "));
- EditorGUIUtility.labelWidth = oldWidth;
- };
- mTargetList.onAddCallback = (UnityEditorInternal.ReorderableList l) =>
- {
- var index = l.serializedProperty.arraySize;
- ++l.serializedProperty.arraySize;
- SerializedProperty elemProp = mTargetList.serializedProperty.GetArrayElementAtIndex(index);
- elemProp.FindPropertyRelative(() => def.weight).floatValue = 1;
- };
- }
- #if false // enable for debugging
- [DrawGizmo(GizmoType.Active | GizmoType.InSelectionHierarchy, typeof(CinemachineTargetGroup))]
- private static void DrawGroupComposerGizmos(CinemachineTargetGroup target, GizmoType selectionType)
- {
- Gizmos.color = Color.yellow;
- var sphere = target.Sphere;
- Gizmos.DrawWireSphere(sphere.position, sphere.radius);
- }
- #endif
- }
- }
|