New: You'll now find a complete Basic project Template in the resources/Project Templates folder. Will add more complex ones soon.

This commit is contained in:
photonstorm
2013-10-28 23:29:34 +00:00
parent 2b40d2f507
commit 7ceb11ae49
9 changed files with 231 additions and 1 deletions
+4
View File
@@ -151,6 +151,7 @@ Phaser.Animation.prototype = {
this.isPlaying = true;
this.isFinished = false;
this.paused = false;
this._timeLastFrame = this.game.time.now;
this._timeNextFrame = this.game.time.now + this.delay;
@@ -179,6 +180,7 @@ Phaser.Animation.prototype = {
this.isPlaying = true;
this.isFinished = false;
this.paused = false;
this._timeLastFrame = this.game.time.now;
this._timeNextFrame = this.game.time.now + this.delay;
@@ -202,6 +204,7 @@ Phaser.Animation.prototype = {
this.isPlaying = false;
this.isFinished = true;
this.paused = false;
if (resetFrame)
{
@@ -304,6 +307,7 @@ Phaser.Animation.prototype = {
this.isPlaying = false;
this.isFinished = true;
this.paused = false;
if (this._parent.events)
{