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?