mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-22 08:18:51 -05:00
Run formatter
This commit is contained in:
parent
5b3a31cc64
commit
e21ac9e231
@ -27,14 +27,13 @@ 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 =>
|
||||
{
|
||||
ReflectionHelper.Invoke(parentObj, events.OnItemChanged,
|
||||
new object[] { index, x.GetValue<object>() });
|
||||
});
|
||||
e.TrackPropertyValue(arrayElement, x =>
|
||||
{
|
||||
ReflectionHelper.Invoke(parentObj, events.OnItemChanged,
|
||||
new object[] { index, x.GetValue<object>() });
|
||||
});
|
||||
}
|
||||
};
|
||||
listView.unbindItem = (element, index) =>
|
||||
|
Loading…
Reference in New Issue
Block a user