| 1071 | } |
| 1072 | |
| 1073 | float NeuralPiAudioProcessorEditor::getParameterValue(const String& paramId) |
| 1074 | { |
| 1075 | if (auto* param = getParameter(paramId)) |
| 1076 | return param->getValue(); |
| 1077 | |
| 1078 | return 0.0f; |
| 1079 | } |
| 1080 | |
| 1081 | void NeuralPiAudioProcessorEditor::setParameterValue(const String& paramId, float value) |
| 1082 | { |
nothing calls this directly
no outgoing calls
no test coverage detected