1
0

feat: load synthef on startup

This commit is contained in:
2025-06-14 16:41:54 +02:00
parent fddbf09d99
commit 6f90b4d1cf
26 changed files with 214 additions and 152 deletions

View File

@ -0,0 +1,11 @@
SynthUtils {
*playChordGated {
|synth, time, freqs=#[], args=#[]|
r{
var synths = Array.fill(127, nil);
freqs.do({|freq, i| synths[i] = Synth(synth, args ++ [freq: freq] ++ [release: time])});
time.wait;
synths.do({|item, i| synths[i].set(\gate, 0)});
}.play;
}
}