Updated README and sorting out folder case issue.

This commit is contained in:
photonstorm
2013-10-23 13:30:23 +01:00
parent f1f42e4d41
commit 4a51ac4671
333 changed files with 2058 additions and 26 deletions
+8 -1
View File
@@ -190,6 +190,9 @@ Phaser.Sprite = function (game, x, y, key, frame) {
*/
this.scale = new Phaser.Point(1, 1);
// console.log(this.worldTransform);
// this.worldTransform = [];
/**
* @property {Phaser.Point} _cache - A mini cache for storing all of the calculated values.
* @private
@@ -566,7 +569,11 @@ Phaser.Sprite.prototype.kill = function() {
this.alive = false;
this.exists = false;
this.visible = false;
this.events.onKilled.dispatch(this);
if (this.events)
{
this.events.onKilled.dispatch(this);
}
}