Load Start Screen Every Time

How would I go about making my app load into the start screen scene every time I open the app?

I guess what I’m looking for is something along the lines of OnApplicationOpen () wherein I can load level 0.

Thanks in advance!

The app should always begin with scene 0 as specified in the build settings (you can drag the scenes in the build settings dialog to reorder them if necessary). Are you finding that this does not happen?

If you mean you do not want the app to multitask, which makes it return at the place you left the game, you must add UIApplicationExitsOnSuspend to the Info.plist in Xcode and set it to true.

Exactly what I was looking for Moonjump, thank you!