From 065fe5b15ed1cc690be043325346a7bafc027742 Mon Sep 17 00:00:00 2001 From: Haoyu Xu Date: Fri, 2 May 2025 11:33:43 +0800 Subject: [PATCH] feat: update new operators --- apps/module/src/player.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/module/src/player.ts b/apps/module/src/player.ts index ad3420c..ab8a867 100644 --- a/apps/module/src/player.ts +++ b/apps/module/src/player.ts @@ -343,11 +343,7 @@ export class Player { const fpsInterval = 1 / this.config.fps const now = performance.now() / 1000 // Update animation and skeleton based on user selections - if ( - !this.paused && - this.config.animation && - now - this.lastFrameTime > fpsInterval - ) { + if (!this.paused && this.config.animation) { const ctx = this.context const gl = ctx.gl