- Home /
 
 
               Question by 
               TimBorquez · Dec 19, 2013 at 03:12 PM · 
                androidmobilebackgroundquitapplication.quit  
              
 
              Can I make my Android game close if you leave the game on the title screen?
I would like the game to remain paused in the background on every screen but the title when you leave, like when you hit the home button
               Comment
              
 
               
              I just added this but I'm not 100% that this is working...
 function OnApplicationPause(pauseStatus: boolean) {
     if(pauseStatus)
     Application.Quit();
 }
 
                 Your answer