This commit is contained in:
photonstorm 2014-07-09 05:38:59 +01:00
parent 7b8b1bf30f
commit a70a938505

View file

@ -612,7 +612,7 @@ Phaser.Game.prototype = {
},
/**
* The core game loop when in a paused state.
* The core game loop.
*
* @method Phaser.Game#update
* @protected
@ -658,6 +658,7 @@ Phaser.Game.prototype = {
{
this.state.preRender();
this.renderer.render(this.stage);
this.plugins.render();
this.state.render();
this.plugins.postRender();