Change a parameter value.@n The host may call this function from any context, including realtime processing.@n When a parameter is marked as automatable, you must ensure no non-realtime operations are performed. @note This function will only be called for parameter inputs. */
| 163 | @note This function will only be called for parameter inputs. |
| 164 | */ |
| 165 | void setParameterValue(const uint32_t index, const float value) override |
| 166 | { |
| 167 | fParameters[index] = value; |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | Run/process function for plugins without MIDI input. |
no outgoing calls
no test coverage detected