initial commit
This commit is contained in:
12
random_lfo.scd
Normal file
12
random_lfo.scd
Normal file
@ -0,0 +1,12 @@
|
||||
(
|
||||
SynthDef(\randlfo, {
|
||||
var sig;
|
||||
sig = LFNoise0.ar(\rate.kr(1)).linlin(
|
||||
-1,
|
||||
1,
|
||||
\min.kr(0),
|
||||
\max.kr(1),
|
||||
);
|
||||
Out.ar(\out.kr(0), sig);
|
||||
}).add;
|
||||
)
|
||||
Reference in New Issue
Block a user