| 386 | } |
| 387 | |
| 388 | juce::var ScriptModulationMatrix::getConnectionData(String componentId) |
| 389 | { |
| 390 | Array<var> data; |
| 391 | |
| 392 | for (auto t : targetData) |
| 393 | { |
| 394 | if (t->componentId == componentId || componentId.isEmpty()) |
| 395 | data.addArray(*t->getConnectionData().getArray()); |
| 396 | } |
| 397 | |
| 398 | return var(data); |
| 399 | } |
| 400 | |
| 401 | void ScriptModulationMatrix::updateConnectionData(var connectionList) |
| 402 | { |
no test coverage detected