From 1457d250ae682067ad10d4a68f6ea99c2e14a95a Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 26 Dec 2024 17:49:48 -0600 Subject: [PATCH] Lower relative speeds, framerate target --- src/components/Dots.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Dots.tsx b/src/components/Dots.tsx index b90be8b..81bdc4b 100644 --- a/src/components/Dots.tsx +++ b/src/components/Dots.tsx @@ -23,8 +23,8 @@ const Dots: React.FC = () => { const SCALE = 200; const LENGTH = 10; const SPACING = 15; - const TARGET_FRAMERATE = 12; - const TIMESCALE = 18 / TARGET_FRAMERATE; + const TARGET_FRAMERATE = 8; + const TIMESCALE = 12 / TARGET_FRAMERATE; function getForceOnPoint(x: number, y: number, z: number) { return (noise(x / SCALE, y / SCALE, z) - 0.5) * 2 * TWO_PI;