Slot FX Parameters
-
There are 8 serial Effect Slots in my project.
Do I have to declare all of the parameters of the each slot? Or is it possible to add them dynamically?Because there are 8 slots and each slot have 10 effects. So there will be tons of parameters to declare:
Slot0 Reverb0: RoomSize0, Damping0, StereoWidth0 Delay0: LeftDelay0, FeedbackLeft0, RightDelay0, FeedbackRight0....etc. . . .
Slot1 Reverb1: RoomSize1, Damping1, StereoWidth1 Delay1: LeftDelay1, FeedbackLeft1, RightDelay1, FeedbackRight1....etc. . . .
. . .
-
Let's say the most knobs you will need for 1 effect is 10. So add 10 knobs to your UI and when the user changes the effect you change the parameter/processor ID for the knobs and hide the knobs that aren't needed for that effect.
-
@d-healey Clever solution Thank you!