Hello!
I’m populating an actor and each new instance of it grabs some parameters from a UDataTable that is a UPROPERTY visible in blueprint editor. But the problem is, if I assign the data table in editor and then make some changes to the table itself (for example, modify some rows), these changes won’t be automatically applied to all actors who use it. I can use PostEditChangeProperty to update my actors, but this event fires only if I pick another data table in editor, but not when I edit the table, which is not exactly what I want.
Is there any way to solve this issue?