Forces working, collision half way there.

This commit is contained in:
Richard Davey
2013-09-03 17:28:12 +01:00
parent 2fe8a3a0a7
commit a27f6d6562
5 changed files with 322 additions and 5 deletions
+3 -2
View File
@@ -379,16 +379,17 @@ Phaser.Game.prototype = {
this.input.update();
this.tweens.update();
// this.stage.update();
this.sound.update();
// this.physics.update();
this.world.update();
this.state.update();
// this.physics.update();
this.plugins.update();
this.renderer.render(this.world._stage);
this.state.render();
this.world.postUpdate();
this.plugins.postRender();
},