«UFO Hover» by Margo Gentile

on 15 Oct'16 06:53 in

//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.

1
2
3
4
5
6
7
8
9
10
11
12
(
{
	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;
)
raw 224 chars (focus & ctrl+a+c to copy)
reception
comments