MCPcopy Create free account
hub / github.com/jerryuhoo/Fire / invertModulationDepth

Method invertModulationDepth

Source/DSP/LfoManager.cpp:440–451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

438}
439
440void LfoManager::invertModulationDepth(const juce::String& targetParameterID)
441{
442 const juce::ScopedLock sl(dataAccessLock);
443 for (auto& routing : modulationRoutings)
444 {
445 if (routing.targetParameterID == targetParameterID)
446 {
447 routing.depth *= -1.0f;
448 return;
449 }
450 }
451}
452
453void LfoManager::toggleBypassForRouting(const juce::String& targetParameterID)
454{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected