thor
2014-10-15 17:10:39 UTC
Hi List
I'm expecting Synth and Group to behave similarly here, but on release of the Group, it's not removed from the server:
s.boot
s.plotTree
x = Synth("default", [\freq, rrand(400, 600)]);
x.release
g = Group.new;
Synth("default", [\freq, rrand(400, 600)], target:g);
Synth("default", [\freq, rrand(400, 600)], target:g);
Synth("default", [\freq, rrand(400, 600)], target:g);
g.release;
I need the release for the group as I want the envelope fadeout.
Any suggestions? I prefer not to hack around as I'm creating hundreds of groups with lots of synths, so deferring the .free of the group is not really an appealing option.
Thor
_______________________________________________
sc-users mailing list
info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-users/
search: http://www.listarc.bham.ac.uk/lists/sc-users/search/
I'm expecting Synth and Group to behave similarly here, but on release of the Group, it's not removed from the server:
s.boot
s.plotTree
x = Synth("default", [\freq, rrand(400, 600)]);
x.release
g = Group.new;
Synth("default", [\freq, rrand(400, 600)], target:g);
Synth("default", [\freq, rrand(400, 600)], target:g);
Synth("default", [\freq, rrand(400, 600)], target:g);
g.release;
I need the release for the group as I want the envelope fadeout.
Any suggestions? I prefer not to hack around as I'm creating hundreds of groups with lots of synths, so deferring the .free of the group is not really an appealing option.
Thor
_______________________________________________
sc-users mailing list
info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-users/
search: http://www.listarc.bham.ac.uk/lists/sc-users/search/