BeginPlay strange behaviour

I can’t recall exactly how this goes, but you can’t rely on one begin play being called before another. Here, it does depend on when you compiled relative to which code you refreshed last ( I think ).

Another example is the most recently placed actor’s input will be serviced before others.

It’s much better to not assume anything in this area.

If you want to force one actor to trigger before another you can change which part of the tick they are run in:

1 Like