@pcs800 said in GateReduction:
Use a panel then
if by that you mean script, yes. There isnt a built-in way to create a reduction meter as far as I know. You're gonna have to script a little bit.
If you can break this down, this is how I would use it.
const var Dynamics = Synth.getEffect("Dynamics Visual"); // declare your compressor module const var GateReduction = Content.getComponent("GateReduction"); // declare your slider const var t = Engine.createTimerObject(); // create a timer object t.setTimerCallback(function() // create a timer callback { var v = Dynamics.getAttribute(Dynamics.GateReduction); // grab the values for GateReduction v = Engine.getDecibelsForGainFactor(v); // convert to float GateReduction.setValue(v); // send value to your slider. }); t.startTimer(20); // set timer frequency aka refresh-rate