I’d like to use my SynthDefs as a source for new Ndefs. However, SC doesn’t copy the specs from the SynthDef to the corresponding Ndef. I’ve tried two methods, and neither of them works. There are no specs in the Ndef afterward! I don’t want to define global specs; instead, I want to have them on a per-Ndef basis, defined in my SynthDef sources.
Thanks for the answer, but i have no extensions installed and i’m looking for a vanilla option.
I was playing arround a lot now and figuret it out:
x = Ndef(\ndef1).source_(SynthDescLib.global[\synth1].def);
This creates a Ndef, but as an Control-Proxy, and all the Specs works from the SynthDef and also the NdefGui works.
Honestly i don’t know why, it was just luck. And it is very confusing that there is no monitor synth with this! It is the pure source synth that is started only, and it needs an Out UGen like a normal SynthDef.
Maybe someone knows exactly why this works and the other way not, and why this creates only a Control-Proxy without monitor synths like normally in Ndefs?