diff --git a/src/core/World.js b/src/core/World.js index 46f33dd6f..61114e230 100644 --- a/src/core/World.js +++ b/src/core/World.js @@ -113,8 +113,6 @@ Phaser.World.prototype.update = function () { */ Phaser.World.prototype.postUpdate = function () { - this.camera.update(); - if (this.game.stage._stage.first._iNext) { var currentNode = this.game.stage._stage.first._iNext; @@ -131,6 +129,7 @@ Phaser.World.prototype.postUpdate = function () { while (currentNode != this.game.stage._stage.last._iNext) } + this.camera.update(); } /**