-
Notifications
You must be signed in to change notification settings - Fork 0
Parameters
Parameters are always part of effects.
Individual Effects / "Processors" have parameters that directly link to audio execution. These are automatically added by an Effect based on its linked processor, using the JUCE AudioProcessor class.
There are also Meta-Parameters which are used by Meta-Effects to provide access to internal parameters through the external interface. For now, these link directly to internal parameters and transfer the set value accordingly.
The last type of Parameter is an Output Parameter, which cannot receive a value, but instead sends a value to any parameters connected to it. This is useful if the parameter is controlled by an internal function and/or a parameter-mod effect, which allows more complex, dynamic parameters to be used.
Parameters, based on the JUCE system, come in three types: Buttons, ComboBoxes, and Sliders.