This commit is contained in:
legop3
2025-12-21 05:29:58 -05:00
parent 81a8c35873
commit e334246cef
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -570,7 +570,7 @@ function buildSegments({ count, totalSpan, gap, startAngle }) {
return segments;
}
const LIGHT_BUMP_SENSITIVITY = 0.18; // increase to spin through hues faster
const LIGHT_BUMP_SENSITIVITY = 1; // increase to spin through hues faster
function lightBumpColor(value) {
if (value == null || value <= 0) return '#000000';
const hue = (value * LIGHT_BUMP_SENSITIVITY) % 360; // cycles through the whole spectrum