How to call the base method from an override implementation (the super in c++)

I have a blueprint that extend another blueprint and override 2 events.

I want the overrided event to first call it’s base implementation and then execute it’s own code. In C++ I would just call super::method() at the beginning and then write the specific code.
how can I do that with blueprints?

Click RMB on your event and select “Add call to parent function” :slight_smile:

1 Like

thanks :slight_smile: I would never find it without you!

1 Like