Scene Load times
First off, I am trying to combine my menu and scene to be able to load all at once (to minimize loading upon starting the scene), but the way I want to do this is to place the whole menu right above my entire scene window, and then once someone hits play all the camera will do is drop down from the menu to the actual game scene. How do I do this?
Comments
Make a boolean game attribute "cam_play".
And when you hit "play" put a rule to make "game.cam_play" to true.
And on the "CAM" actor;
When "game.cam_play" is true; change position to X,Y
That should do it. But make sure to click on the little camera icon on the main gamesalad window where you edit the scene and make the camera boundaries as small as you can.