`==` -> `===`
This commit is contained in:
parent
3123646db7
commit
4bfe27cecc
|
|
@ -121,7 +121,7 @@ export class RootAnimation extends CompositeAnimation implements AnimationHandle
|
||||||
}
|
}
|
||||||
|
|
||||||
runAnimationLoop(player: PlayerObject): void {
|
runAnimationLoop(player: PlayerObject): void {
|
||||||
if (this.handles.size == 0) {
|
if (this.handles.size === 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.progress += this.clock.getDelta() * this.speed;
|
this.progress += this.clock.getDelta() * this.speed;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue