From db682996f0a11586d7d6cfd89a6bed92d5741279 Mon Sep 17 00:00:00 2001 From: Dejvino Date: Sun, 4 Jan 2026 21:35:08 +0000 Subject: [PATCH] Tweak: linear FFT graph --- party-stage/src/scene/fps-counter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/party-stage/src/scene/fps-counter.js b/party-stage/src/scene/fps-counter.js index 8a730dd..e2ec284 100644 --- a/party-stage/src/scene/fps-counter.js +++ b/party-stage/src/scene/fps-counter.js @@ -464,7 +464,7 @@ export class DebugPanel extends SceneFeature { for(let i = 0; i < bufferLength; i++) { const val = (data[i] / 255); - const barHeight = val * val * h; + const barHeight = val * h; const hue = (i / bufferLength) * 260; // Red to Purple ctx.fillStyle = `hsl(${hue}, 100%, 50%)`; ctx.fillRect(x, h - barHeight, barWidth + 1, barHeight);