[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sc-users] exceeds maximum number of SynthDefs
Hello!
I wrote this simple code below.
But the problem is,
The Routine fails to create new Synth 'cause it exceeds maximum number of
SynthDefs.
Is there any solution to solve it without using SynthDef?
(just like auto-freeing anonymous SynthDef or Synth without SynthDef if it
exists)
Thanks in advance!
(
Task.new({
loop({
{ LFPulse.ar(rrand(200, 1000)) * EnvGen.ar(Env.perc(0.001, 0.1),
doneAction:2) ! 2}.play;
0.1.wait;
})
}).play
)
--
View this message in context: http://www.nabble.com/exceeds-maximum-number-of-SynthDefs-tf4694589.html#a13419144
Sent from the Supercollider - User mailing list archive at Nabble.com.