Hey, within Blueprints, I have many (40+) custom events on my Event Graph that trigger another 20 or so nodes within them. Is there any performance advantage into making these into Functions isntead? Or is it strictly house keeping and keeping the event graph clean? Thanks!
Custom events are just functions without any return value so comparing a custom event to a function that doesn’t return anything it should be exactly the same. It is much more important to consider which nodes you are using and how often they are called.
@GarnerP57 - Thanks! The reason I ask, is my Event Graph is getting quite huge… and is boggin down my machine when moving around or adding nodes. Didnt know if ‘hiding’ nodes within Functions instead of out in the open on the Event Graph would speed up my authoring performance or not.