In the blueprint setup below, “Do something with TestActor” is printed before “Init TestActor” showing that the BeginPlay for TestActor is not fired immediately after SpawnActor Test Actor is called.
How can I make sure that some init bp script I have runs before SpawnActor returns?
I don’t want to be limited in what I can do in the init script, so using Construction Script is not an option. (See here and here)
Thanks for the response! That is indeed a good read containing some very useful info. Though I was wondering if there was a blueprint option for that? (It seems like a fairly common task…)