Run formatter

This commit is contained in:
AnnulusGames 2024-02-22 10:32:37 +09:00
parent 5b3a31cc64
commit e21ac9e231

View File

@ -27,10 +27,9 @@ namespace Alchemy.Editor.Elements
var e = new AlchemyPropertyField(arrayElement, property.GetPropertyType(true), depth + 1, true);
element.Add(e);
element.Bind(arrayElement.serializedObject);
if(events != null)
if (events != null)
{
e.TrackPropertyValue(arrayElement,
x =>
e.TrackPropertyValue(arrayElement, x =>
{
ReflectionHelper.Invoke(parentObj, events.OnItemChanged,
new object[] { index, x.GetValue<object>() });