mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
Remove dithers
This commit is contained in:
parent
862419f88f
commit
a376041ab8
14 changed files with 356 additions and 78 deletions
|
|
@ -297,6 +297,9 @@ void WavetableAudioProcessor::GlobalParams::setup (WavetableAudioProcessor& p)
|
|||
pitchBend = p.addIntParam ("pitchbend", "Pitch Bend", "PB Range", "", { 0.0, 48.0, 1.0, 1.0 }, 2.0f, 0.0f);
|
||||
|
||||
level->conversionFunction = [] (float in) { return juce::Decibels::decibelsToGain (in); };
|
||||
|
||||
if (auto props = p.getSettings())
|
||||
mpe->setUserValue (props->getBoolValue ("mpe", false) ? 1.0f : 0.0f);
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
|
|
@ -566,6 +569,8 @@ WavetableAudioProcessor::WavetableAudioProcessor()
|
|||
init();
|
||||
|
||||
lastMono = globalParams.mono->isOn();
|
||||
|
||||
reset();
|
||||
}
|
||||
|
||||
WavetableAudioProcessor::~WavetableAudioProcessor()
|
||||
|
|
@ -779,6 +784,9 @@ void WavetableAudioProcessor::reset()
|
|||
chorus.reset();
|
||||
stereoDelay.reset();
|
||||
reverb.reset();
|
||||
bitcrusher.reset();
|
||||
fireAmp.reset();
|
||||
grindAmp.reset();
|
||||
|
||||
for (auto& l : modLFOs)
|
||||
l.reset();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue