From 0675d4987bebdee642300719b94414194d32c6ca Mon Sep 17 00:00:00 2001 From: Fraxle Date: Fri, 26 Jun 2026 17:05:34 +0100 Subject: [PATCH] 3.0.3.3 Faster Scope playback --- assets/js/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/js/app.js b/assets/js/app.js index 76524a8..3d3c934 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -44,9 +44,9 @@ const html = htm.bind(h); // ── Scope time-lapse playback ─────────────────────────────────────────── // Drives the big scope through the next 24h so you can watch the sky/ground -// gradients and weather evolve. Speed: 15 simulated minutes every 5 real -// seconds (≈ a full day in 8 minutes). UI advances smoothly every 200ms. -const PLAYBACK_SIM_MS_PER_REAL_MS = 180; // 15 min / 5 s = 180× +// gradients and weather evolve. Speed: 15 simulated minutes every 1 real +// second (≈ a full day in ~1.6 minutes). UI advances smoothly every 200ms. +const PLAYBACK_SIM_MS_PER_REAL_MS = 900; // 15 min / 1 s = 900× const PLAYBACK_STEP_MS = 200; // UI update cadence const PLAYBACK_WINDOW_MS = 24 * 60 * 60 * 1000;