feat(desktop): disable Backdrop noise overlay by default

The noise overlay defaulted to on, which adds a busy speckle layer over
the whole window for every new user. Flip the Leva default to off; the
toggle stays in Backdrop / Noise for anyone who wants it back.
This commit is contained in:
Brooklyn Nicholson 2026-05-12 10:17:07 -04:00
parent 1ae0eed039
commit 22297b3050

View file

@ -144,7 +144,7 @@ export function Backdrop() {
const noise = useControls(
'Backdrop / Noise',
{
enabled: { value: true, label: 'on' },
enabled: { value: false, label: 'on' },
opacity: { value: 0.21, min: 0, max: 1.5, step: 0.01, label: 'opacity (× mul)' },
blendMode: { value: 'color-dodge' as BlendMode, options: BLEND_MODES, label: 'blend' },
color: { value: '#eaeaea', label: 'dot color' },