Page 1 of 1

How Can I Un-Suspend The Game?

PostPosted: Mon Jun 27, 2016 3:32 am
by PerrySteven
I want to add pause functionality to my game, but for some reason the PauseGameOn(); and PauseGameOff(); functions don't work, so I decided to use the SuspendGame(); function which pauses my game perfectly well. But the problem I'm facing now is that I don't know how to do an un-SuspendGame action in the script editor.

Re: How Can I Un-Suspend The Game?

PostPosted: Thu Jun 30, 2016 7:44 pm
by schnellboot
SuspendGame: Pause the game and stop receiving any events.

void SuspendGame()

Script Editor Syntax:

SuspendGame();

Shows the task bar on the Pocket PC.
Continue the game only if the game gets the focus (when the user clicks on game title bar window or uses Alt+Tab or if user click on [Continue] option on Pocket PC, Handheld PC and Smartphone).
http://game-editor.com/docs/script_reference.htm


What was wrong with PauseGameOn()?