| 752 | } |
| 753 | |
| 754 | hise::Modulator* ScriptModulationMatrix::getSourceMod(const String& id) const |
| 755 | { |
| 756 | auto index = getSourceIndex(id); |
| 757 | |
| 758 | if (isPositiveAndBelow(index, sourceData.size())) |
| 759 | return sourceData[index]->mod.get(); |
| 760 | |
| 761 | return nullptr; |
| 762 | } |
| 763 | |
| 764 | juce::ReferenceCountedObject* ScriptModulationMatrix::getSourceCable(const String& id) const |
| 765 | { |
no test coverage detected