mirror of
https://github.com/photonstorm/phaser
synced 2024-11-14 00:47:29 +00:00
Fixed lint errors with PR #5159
This commit is contained in:
parent
b06f498b1f
commit
818343f452
1 changed files with 7 additions and 4 deletions
|
@ -330,9 +330,12 @@ var Animation = new Class({
|
||||||
key = key.key;
|
key = key.key;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(this.nextAnim === null){
|
if (this.nextAnim === null)
|
||||||
|
{
|
||||||
this.nextAnim = key;
|
this.nextAnim = key;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
this.nextAnimsQueue.push(key);
|
this.nextAnimsQueue.push(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue