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:
@@ -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' },
|
||||
|
||||
Reference in New Issue
Block a user