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 or false 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()
    }
})

See also

is running, is game over