SC hint #4
VCAs in SC : a question of summing. VCAs are usefull in order not to spend cpu cycles adjusting levels with a dedicated synth, but still keeping full range on your controlling faders, knobs, etc.
(~vca = 0;
w=FlowView.new;
g = EZSlider( w, // parent
390@20, // bounds
"The VCA ", // label
\db.asSpec, // controlSpec
{|ez| ~vca = ez.value;i.value = ~vca + h.value } // action
).value_(0);
h = EZSlider( w, // parent
390@20, // bounds
"The fader ", // label
\db.asSpec, // controlSpec
{|ez| i.value = ~vca + ez.value} // action
);
i = EZSlider( w, // parent
390@20, // bounds
"Result ", // label
\db.asSpec, // controlSpec
{|ez| } // action
);
)
Tags: Add new tag, hint, supercollider