Group nearly done. Sprite.anchor appears to be broken though, must fix.

This commit is contained in:
Richard Davey
2013-09-06 20:20:58 +01:00
parent 822a2df289
commit eb7af3d2a2
11 changed files with 544 additions and 199 deletions
-4
View File
@@ -378,7 +378,6 @@ Phaser.Game.prototype = {
if (!this.paused)
{
this.plugins.preUpdate();
// this.world.preUpdate();
this.physics.preUpdate();
this.input.update();
@@ -391,9 +390,6 @@ Phaser.Game.prototype = {
this.renderer.render(this.world._stage);
this.state.render();
// this.world.postUpdate();
// this.physics.postUpdate();
this.plugins.postRender();
}