mirror of
https://github.com/photonstorm/phaser
synced 2024-11-30 08:31:01 +00:00
29 lines
572 B
JavaScript
29 lines
572 B
JavaScript
|
|
var game = new Phaser.Game(800, 600, Phaser.CANVAS, 'phaser-example', { create: create, render: render });
|
|
|
|
function create() {
|
|
|
|
game.onPause.add(onGamePause, this);
|
|
game.onResume.add(onGameResume, this);
|
|
|
|
}
|
|
|
|
function onGamePause() {
|
|
|
|
console.log('game paused at ' + this.time.now);
|
|
|
|
}
|
|
|
|
function onGameResume() {
|
|
|
|
console.log('game un-paused at ' + this.time.now);
|
|
console.log('was paused for ' + game.time.pauseDuration);
|
|
|
|
}
|
|
|
|
function render() {
|
|
|
|
game.debug.renderText('now: ' + game.time.now, 32, 32);
|
|
game.debug.renderText('paused: ' + game.paused, 32, 64);
|
|
|
|
}
|