// title: glitchy noise // author: AdamArmfield // description: // mouse controls lfo volume in the x axis and band pass filter cut off in y, bit of randomness on the cutoffs and mucho glitchiness results // code: //mouse controls lfo volume in the x axis and band pass filter cut off in y, bit of randomness on the cutoffs and mucho glitchiness results {BPF.ar(WhiteNoise.ar(mul: SinOsc.ar(MouseX.kr(0,8),phase:Rand (0,pi), mul:Rand( 0.1,1) )),MouseY.kr(0,20000) * Rand(0,400) ) + BPF.ar(WhiteNoise.ar(mul: SinOsc.ar(MouseX.kr(0,8),phase:Rand (0,pi), mul:Rand( 0.1,1) )),MouseY.kr(0,20000) * Rand(0,400) ) + BPF.ar(WhiteNoise.ar(mul: SinOsc.ar(MouseX.kr(0,8),phase:Rand (0,pi), mul:Rand( 0.1,1) )),MouseY.kr(0,20000) * Rand(0,400) ) }.scope;