I have a questions , How to create bypass button on EQ effect?
-
I want to create a button , separately for 1-6 EQ...
-
//Bypass0_EQ
inline function onBypass0Control(component, value)
{
ParametriqEQ.setBypassed(ParametriqEQ.BandOffset * 0 + ParametriqEQ.Enabled, value);
};Content.getComponent("Bypass0").setControlCallback(onBypass0Control);
I don't know how...so now i am trying....
-
@huen97 Do you want to bypass the entire eq effect or the individual bands?
-
@huen97 said in I have a questions , How to create bypass button on EQ effect?:
//Bypass0_EQ
inline function onBypass0Control(component, value)
{
ParametriqEQ.setBypassed(ParametriqEQ.BandOffset * 0 + ParametriqEQ.Enabled, value);
};Content.getComponent("Bypass0").setControlCallback(onBypass0Control);
I don't know how...so now i am trying....
You cant by pass bands - just the FX itself-
inline function onBypass0Control(component, value) { ParametriqEQ.setBypassed(true); }
-
you could set the gain of a band - 0 and that should "bypass" it..
-
please put your code inside the code tags...
-
-
@Lindon You can turn bands off/on I think. If you want to bypass the entire eq there is no need to script it, unless the button needs to do multiple things.
-
@d-healey said in I have a questions , How to create bypass button on EQ effect?:
@Lindon You can turn bands off/on I think. If you want to bypass the entire eq there is no need to script it, unless the button needs to do multiple things.
wow - not sure I'd ever need it but I cant find that int eh documentation anywhere...
-
@Lindon
ParametriqEQ.Enabled
-
@d-healey said in I have a questions , How to create bypass button on EQ effect?:
@Lindon
ParametriqEQ.Enabled
LOL...er thats what I just said to him, thats for the FX not for a single band in an FX....
-
@Lindon You can use it as the attribute for individual bands.
local index = ParametriqEQ.BandOffset * 1 + ParametriqEQ.Enabled
-
@d-healey wow never knew that - as I say cant think why I'd ever want it....so I'm sure I will next week sometime ;-)