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
+2
View File
@@ -192,12 +192,14 @@ Phaser.AnimationManager.prototype = {
{
if (this.currentAnim.isPlaying == false)
{
this.currentAnim.paused = false;
return this.currentAnim.play(frameRate, loop, killOnComplete);
}
}
else
{
this.currentAnim = this._anims[name];
this.currentAnim.paused = false;
return this.currentAnim.play(frameRate, loop, killOnComplete);
}
}