File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ Build Dependencies:
55- JUCE (https://juce.com/download/ )
66- Projucer (https://docs.juce.com/master/tutorial_new_projucer_project.html ) (for creating Xcode/Visual Studio projects in order to build)
77
8- Windows:
8+ <!-- Windows:
99- Compiled Windows files are available under "Releases". Unzip the files and place them in
1010 - C:\Program Files\Common Files\VST3 (VST3)
11- <!-- - C:\Program Files\Common Files\Avid\Audio\Plug-Ins (AAX) -->
12-
11+ - C:\Program Files\Common Files\Avid\Audio\Plug-Ins (AAX)
12+ -->
1313macOS:
1414- Compiled macOS files are available under "Releases". Unzip the files and place them in
1515 - Macintosh HD/Library/Audio/Plug-Ins/Components/ (AU)
Original file line number Diff line number Diff line change @@ -403,10 +403,10 @@ void LargeConcertHallB::reset()
403403const juce::String LargeConcertHallB::getName () const { return " LargeConcertHallB" ; }
404404
405405// ==============================================================================
406- void LargeConcertHallB::setSize (float newSize) { mSize = newSize * 44.1 / 34.125 ; }
407- void LargeConcertHallB::setDecay (float newDecay) { mDecay = pow (newDecay, 0.67 ) / 0.9 ; }
406+ void LargeConcertHallB::setSize (float newSize) { mSize = newSize * ( 44.1 / 34.125 ) ; }
407+ void LargeConcertHallB::setDecay (float newDecay) { mDecay = pow (newDecay, 0.75 ) * 1.2 ; }
408408void LargeConcertHallB::setDampingCutoff (float newCutoff) { mDampingCutoff = newCutoff; }
409- void LargeConcertHallB::setDiffusion (float newDiffusion) { mDiffusion = newDiffusion * 1.5 ; }
409+ void LargeConcertHallB::setDiffusion (float newDiffusion) { mDiffusion = newDiffusion * 2 ; }
410410void LargeConcertHallB::setPreDelay (float newPreDelay) { mPreDelayTime = newPreDelay; }
411411void LargeConcertHallB::setEarlyLateMix (float newMix) { mEarlyLateMix = newMix; }
412412void LargeConcertHallB::setDryWetMix (float newMix) { mDryWetMix = newMix; }
You can’t perform that action at this time.
0 commit comments