Manual update

This commit is contained in:
Webeled
2013-09-30 13:26:56 +01:00
parent 8096dc67f5
commit 4b177e0a9b
11 changed files with 87 additions and 19 deletions
+16
View File
@@ -305,6 +305,22 @@ Object.defineProperty(Phaser.AnimationManager.prototype, "frameTotal", {
});
Object.defineProperty(Phaser.AnimationManager.prototype, "paused", {
get: function () {
return this.currentAnim.isPaused;
},
set: function (value) {
this.currentAnim.paused = value;
}
});
Object.defineProperty(Phaser.AnimationManager.prototype, "frame", {
/**