Change a parameter value. */
| 183 | Change a parameter value. |
| 184 | */ |
| 185 | void setParameterValue(uint32_t index, float value) override |
| 186 | { |
| 187 | // this is only called for input paramters, and we only have one of those. |
| 188 | if (index != 0) return; |
| 189 | |
| 190 | fColor = value; |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | Change an internal state. |