mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
Animation delay put back to normal
This commit is contained in:
parent
d9a49797c4
commit
91c07ea37d
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue