| 375 | } |
| 376 | |
| 377 | bool ScriptModulationMatrix::canConnect(String source, String target) |
| 378 | { |
| 379 | for (auto t : targetData) |
| 380 | { |
| 381 | if (t->modId == target) |
| 382 | return t->canConnect(source); |
| 383 | } |
| 384 | |
| 385 | return false; |
| 386 | } |
| 387 | |
| 388 | juce::var ScriptModulationMatrix::getConnectionData(String componentId) |
| 389 | { |
nothing calls this directly
no test coverage detected