PointProxy added to allow for easy setting of force and velocity. More p2 tests done. World update done.

This commit is contained in:
photonstorm
2014-02-10 22:54:56 +00:00
parent 2de934756c
commit 1184d8bd76
8 changed files with 456 additions and 47 deletions
+2 -3
View File
@@ -447,7 +447,6 @@ Phaser.Game.prototype = {
this.tweens = new Phaser.TweenManager(this);
this.input = new Phaser.Input(this);
this.sound = new Phaser.SoundManager(this);
// this.physics = new Phaser.Physics.Arcade(this);
this.physics = new Phaser.Physics.World(this);
this.particles = new Phaser.Particles(this);
this.plugins = new Phaser.PluginManager(this, this);
@@ -616,11 +615,11 @@ Phaser.Game.prototype = {
this.tweens.update();
this.sound.update();
this.input.update();
this.physics.update();
this.state.update();
this.world.update();
this.physics.update();
this.particles.update();
this.plugins.update();
this.world.update();
this.world.postUpdate();
this.plugins.postUpdate();