Replace all References of a function with another function

Hi all,
I was wondering if its possible to replace all references of an event to a function i made?
for example I have a custom event called Resetbooleans. On almost all my blueprints I call this at the end of the blueprint.

I then created a function version of this called Resetallbooleans, just to make things tidier.

Is there anyway I can replace all the references to the custom event with the function or do I need to go through each one manually and replace it?

many thanks!

No, Manual replacement is required.

Alternatively you can convert the Event to a function. That will auto replace all instances.


You can at least gather them in a list for easier access

press ctrl + F => type in Resetbooleans and then click the binoculars icon on the right of the input field.

Double clicking an entry sends you to the event.

1 Like

1 Like

Thank you both for your time,
This converting to a function is the best option didn’t know you could do this. Thanks you so much!<3

If many blueprints have the same function name then I would suggest creating a common interface for these classes with the function.

It would enforce rules on the class and let you use interface calls on these classes.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.