mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 14:38:30 +00:00
Merge pull request #662 from ralphsmith80/master
issue#661 update state before values are cleared
This commit is contained in:
commit
e1529a3ffb
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue