I wanted to know when an actor spawns a character in back of it, does the engine execute the functions in that order. So would it be Actor and then Spawned actor?
The actions in a list execute in the order of the list. If the middle of the list spawns another actor, that actor will start doing its actions totally separately. So the actions it "owns" could possibly arrive faster than the first actor. Does that answer your question?
Comments
If the middle of the list spawns another actor, that actor will start doing its actions totally separately. So the actions it "owns" could possibly arrive faster than the first actor. Does that answer your question?