`==` -> `===`

This commit is contained in:
Pig Fang 2019-12-23 18:15:04 +08:00 committed by GitHub
parent 3123646db7
commit 4bfe27cecc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;