**Hello,**
The purpose of the code below may seem a bit obtuse, so I'll describe it briefly, as I've omitted the portions not relevant to the issue.
I've created a custom inspector with a "dummy" EditorGUILayout.ObjectField that allows a user to drag any number of components onto it, then will add those components to various lists if it meets certain criteria. This field is contained in a static function, as this function can be called by a few different custom inspector scripts.
This particular functionality works perfectly.
The issue with which I seek assistance only occurs when attempting drag components onto the ObjectField when multiple objects that utilize the ReactorsArray() function are selected. In the example below, EndChangeCheck() is only called for the first selected object.
I seek to ensure that EndChangeCheck is called for each of the selected objects.
using UnityEditor;
using UnityEngine;
using System.Collections.Generic;
[CanEditMultipleObjects]
[CustomEditor(typeof(DSReaction))]
public class DSReactionEditor : Editor
{
private DSReaction T;
private void OnEnable()
{
T = target as DSReaction;
}
public override void OnInspectorGUI()
{
serializedObject.UpdateIfDirtyOrScript();
ReactorsArray(T);
serializedObject.ApplyModifiedProperties();
}
public static void ReactorsArray(Component T)
{
EditorGUI.BeginChangeCheck();
var obj = EditorGUILayout.ObjectField("Add New Reaction", default(Component), typeof(Component), true);
if (EditorGUI.EndChangeCheck())
{
Debug.Log(C.name + " changed!");
}
}
}
For further clarity, let's assume the scene has a number of GameObjects of the type DSReaction, which use the DSReactionEditor inspector script above, and that the GameObjects are named GameObject (1) to GameObject (5).
In the example above, if I select GameObject (1), then drag and drop a component onto the ObjectField in its inspector, it will debug log "GameObject (1) changed!", which is perfect. However, if I select all five GameObjects, then drag and drop a component onto the ObjectField, it still only outputs a single "GameObject (1) changed!" debug log.
**How would I ensure that the Debug.Log fires for all of my selected GameObjects when the ObjectField has files dropped onto it?**
Thank you so much in advance. All help is greatly appreciated!
- S.
↧