Referencing DspNetworks?
-
Hey!
Continuing to learn the ins and outs of scriptnode! How do I get the parameters of a scriptnode dsp network? I have created a simple fx in scriptnode and have some master knobs, I know I can access these master knobs by going to the parameter settings of a slider, setting processor id to the script fx module and parameter id to the master knobs, but how can I replicate this with scripting? I found multiple functions to do with dsp networks, and tried using them, however I cant seem to "link" values of a gui knob to the master knob in the scriptnode network. Any thoughts?
Thanks!
-
@Casmat Same as you would for any of the built in modules.
myEffect.setAttribute(myEffect.ParameterID, value);
-
@d-healey said in Referencing DspNetworks?:
(myEffect.ParameterID, value);
Ahh, makes sense! Thanks!