From 631da960d63188baf3e81478c1a60cf5492de889 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 28 May 2025 17:49:48 +0200 Subject: [PATCH] Update target FPS for mobile devices in app.js --- node/server/public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/server/public/app.js b/node/server/public/app.js index b893acf..1214921 100644 --- a/node/server/public/app.js +++ b/node/server/public/app.js @@ -15,7 +15,7 @@ function isMobileDevice() { const IS_MOBILE = isMobileDevice(); const LOW_PERFORMANCE = IS_MOBILE; // ... später aus FPS ableitbar -let targetFps = LOW_PERFORMANCE ? 24 : 60; +let targetFps = LOW_PERFORMANCE ? 30 : 60; let lastAnim = 0; const container = document.getElementById('viewer');