Hello. I have childeren from a parent and i want to override a part of their custom event. Is it possible?
if you can call a super function that event… at the same time the event should be declared as virtual… myself not tried but you can create a virtual function instead of an event which will be available to override, you can call it in any sub class or by reference.
1 Like
You can:
And you also can, optionally, add a parent call. The arrow points to an override. You can also see them here:
9 Likes
I can’t get this to work in UE5.4 events are not listed in the function override drop down.
Jones
I worked it out, it because I already had declared versions of those events. However they weren’t being called, because they hadn’t been chosen from the override drop down, so Unreal didn’t know to override them.