How to handle array change in details panel

say I have an array in details panel and i want to create event to execute some code when I add or remove new element from said array
How can I do that in UE
I want to know how to just bind the event

You can override the function PostEditChangeProperty on your object with the array property. The parameter to that function will have the property that you can use to check which property has been changed as well as a member that will tell you how it changed. That value includes options for indicating that an element was added or removed from that array property.

4 Likes