GateReduction
-
In the parameters of dynamics module, I am able to select GateReduction, but there's nothing actually showing in the module for it.
What is this function?
I checked the documentation and do not see it. -
@pcs800 thats for displaying peak/reduction values.
This is what that parameter is reffering to.
You can use that parameter/value to make your own meter/readout for whats happening with said gate.
-
@Chazrox Oh nice!
Use a panel then select that parameter? -
@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