How to invert constant modulator? (Solved)
-
Hi everyone! Is there is a way to invert constant modulator? What I need: I have a knob on my interface which is control the start position of samples. And I managed to connect it via script to the constant modulator and it works great, but right now when Knob on the interface and Const. Modulator are on minimum value - samples starts at the maximum modulation points. And when Const. Modulation and Knob are on maximum - samples start as normal (like without SampleStartMod). Maybe I'm doing something wrong? I am hope for your help :)
Right now my script looks:
inline function onKnob11Control(component, value) { Constant1.setIntensity(value); Constant2.setIntensity(value); }; Content.getComponent("Knob11").setControlCallback(onKnob11Control);
-
1 - value
-
@Christoph-Hart Ahh )) Thank's a lot!!