// title: UFO Hover // author: Margo Gentile // description: // //Pulse is the UGen. There is multichannel expansion due to the lists in the freqs. The range is a big part of the reason this sounds so deep. // code: ( { var saw, bpf; saw = Pulse.ar( freq: [100,150], mul: LFPulse.kr( freq: [0, 0.03, 0.04], width: 0.15)); bpf = LPF.ar(in: saw, freq: SinOsc.kr(-10, -5, 3).range(200, 400)); Out.ar(0, bpf); }.play; )