Collision fixes for testing

This commit is contained in:
Richard Davey
2013-09-23 22:23:17 +01:00
parent 257cbe3be8
commit 51049128f5
6 changed files with 139 additions and 3 deletions
+5 -1
View File
@@ -368,9 +368,13 @@ Phaser.StateManager.prototype = {
if (this._created == false && this.onCreateCallback)
{
// console.log('Create callback found');
this._created = true;
this.onCreateCallback.call(this.callbackContext);
}
this._created = true;
else
{
this._created = true;
}
},