497 B
497 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.input.onButtonEvent(Button.B, ButtonEvent.Click, function () {
if (game.isPaused()) {
game.resume()
}
})