Jump to content

Display time after pause/resume


mamwalter
 Share

Recommended Posts

when i create a timer:

this.gameTimer = this.game.time.create(false);this.gameTimer.start();

i can display seconds like this:

this.gameTimer.seconds.toFixed(0)

but if i pause my timer and resume it, it will not take care of the pause because .seconds is the duration since when the timer start. How can I display the time elapsed since the beginning of the game, taking into account pauses ?

 

also this work perfectly:

game.time.events.repeat(Phaser.Timer.SECOND * 20, 2, removeStar, this);

but this not:

this.gameTimer = this.game.time.create(false);this.gameTimer.repeat(Phaser.Timer.SECOND * 20, 2, removeStar, this);this.gameTimer.start();

events are fired instantly.




			
		
Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...