Merge pull request #662 from ralphsmith80/master

issue#661 update state before values are cleared
This commit is contained in:
Richard Davey 2014-04-01 00:56:35 +01:00
commit e1529a3ffb

View file

@ -614,11 +614,11 @@ Phaser.Game.prototype = {
this.plugins.preUpdate();
this.stage.preUpdate();
this.state.update();
this.stage.update();
this.tweens.update();
this.sound.update();
this.input.update();
this.state.update();
this.physics.update();
this.particles.update();
this.plugins.update();