Skip to content

Commit

Permalink
Animation delay put back to normal
Browse files Browse the repository at this point in the history
  • Loading branch information
photonstorm committed Sep 18, 2013
1 parent d9a4979 commit 91c07ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/animation/Animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ Phaser.Animation.prototype = {

if (frameRate !== null)
{
// this.delay = 1000 / frameRate;
this.delay = frameRate;
this.delay = 1000 / frameRate;
// this.delay = frameRate;
}

if (loop !== null)
Expand Down

0 comments on commit 91c07ea

Please sign in to comment.