| 174 | } |
| 175 | |
| 176 | float ProcessorWithScriptingContent::getControlValue(int index) const |
| 177 | { |
| 178 | if (content != nullptr && index < content->getNumComponents()) |
| 179 | return content->getComponent(index)->getValue(); |
| 180 | |
| 181 | else return 1.0f; |
| 182 | } |
| 183 | |
| 184 | void ProcessorWithScriptingContent::controlCallback(ScriptingApi::Content::ScriptComponent *component, var controllerValue) |
| 185 | { |
no test coverage detected