Or if you just want something to happen at the start of the scene after it has loaded :
Have an actor offscreen, and just stick whatever rules you want to happen in it. Then when the scene loads, those rules will trigger, as that actor is in the scene (albeit offscreen)
I got my question answered--I didn't realize I was using a global variable ("LevelDone") to show it/not show it. Now I know I have to reset the "LevelDone" variable back to "not done."
Comments
Have an actor offscreen, and just stick whatever rules you want to happen in it.
Then when the scene loads, those rules will trigger, as that actor is in the scene (albeit offscreen)
Thanks.