From 91c07ea37d7fafc2aaffb538eccb9bfc6a130162 Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Wed, 18 Sep 2013 06:41:41 +0100 Subject: [PATCH] Animation delay put back to normal --- src/animation/Animation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/animation/Animation.js b/src/animation/Animation.js index fa5f4640..e3513e7f 100644 --- a/src/animation/Animation.js +++ b/src/animation/Animation.js @@ -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)