feat: load synthef on startup
This commit is contained in:
10
synthdefs/random_lfo.scd
Normal file
10
synthdefs/random_lfo.scd
Normal file
@ -0,0 +1,10 @@
|
||||
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