Is there a way to switch from say gain to Vocal Stem?
I'm trying to google it but it's hard to word right.
I basically want to set a key function to toggle my gain knob from gain to vocal.
I can switch the EQ Mode but I have my Knobs pre-mapped to the stems. I want to be able to change that on the fly.
I'm trying to google it but it's hard to word right.
I basically want to set a key function to toggle my gain knob from gain to vocal.
I can switch the EQ Mode but I have my Knobs pre-mapped to the stems. I want to be able to change that on the fly.
Posted Thu 07 Sep 23 @ 12:05 am
You're just conditioning a dial with a variable.
button
toggle $dialState
dial mapping
var $dialState 0 ? gain : stem vocal
button
toggle $dialState
dial mapping
var $dialState 0 ? gain : stem vocal
Posted Thu 07 Sep 23 @ 12:19 am
Thanks that worked.
But I didn't input the "toggle $dialState" not sure what that's used for?
For reading audiences - I found that using "stem Instru & Gain" also worked.
The $dialstate will come in handy for a lot of other purposes.
Thanks
But I didn't input the "toggle $dialState" not sure what that's used for?
For reading audiences - I found that using "stem Instru & Gain" also worked.
The $dialstate will come in handy for a lot of other purposes.
Thanks
Posted Thu 07 Sep 23 @ 12:29 am
the variable is to switch between mappings with a button press
Posted Thu 07 Sep 23 @ 12:34 am