55e5125449
* Add game state boolean doc refs * Add check for _img validity * JS guru tricks
474 B
474 B
is Paused
Find out if the game is paused or not.
game.isPaused()
Returns
- a boolean value that is
true
if the game is paused orfalse
if not.
Example
Resume the game if it's paused and button B is pressed.
input.onButtonPressed(Button.B, function () {
if (game.isPaused()) {
game.resume()
}
})