Merged N+ physics in and tidied up the Docs folder and logos.

This commit is contained in:
Richard Davey
2013-08-11 12:15:53 +01:00
parent aff7d99a8a
commit c2d7fb7fab
108 changed files with 17900 additions and 2017 deletions
+4 -1
View File
@@ -35,6 +35,7 @@ var Phaser;
this.modified = false;
this.game = game;
this.type = Phaser.Types.GROUP;
this.active = true;
this.exists = true;
this.visible = true;
@@ -95,7 +96,9 @@ var Phaser;
this._member = this.members[this._i++];
if (this._member != null && this._member.exists && this._member.active) {
this._member.preUpdate();
if (this._member.type != Phaser.Types.GROUP) {
this._member.preUpdate();
}
this._member.update();
}
}