What order are events fired in?

Sure there is a order. In blueprint events are, other than functions, not certainly executed in the moment they are called, the engine could even wait a few tick until it executes them if I remember the documentation correctly. So I think it’s a great question which I already often asked myself…
If I call an event from a function, what happens? Does the function first get’s executed completely and then the event fires, or is an event like a function and does the event first run and after this the function continues to run? I guess with an event the function first completely runs and then the event is executed.

1 Like