You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
211 B

(
s.boot;
)
(
{
var freqCutoff = MouseX.kr(400, 2000);
var ampl = MouseY.kr(0.1, 1.5);
var out = LPF.ar(
WhiteNoise.ar(mul: ampl),
freq: freqCutoff
);
[out, out]
}.scope
)