fixes, changes to gitignore

This commit is contained in:
Armin 2026-07-24 18:03:15 +02:00
commit 11d81cf1fd
17 changed files with 1160 additions and 16 deletions

View file

@ -47,6 +47,22 @@ public:
juce::AudioParameterFloat* eqLowGain, * eqMidGain, * eqHighGain, * eqLowFreq, * eqHighFreq;
juce::AudioParameterFloat* chorusMix, * chorusRate, * chorusDepth, * chorusFeedback, * chorusCenterDelay;
/** Modulation parameters */
juce::AudioParameterChoice* modFilterType;
juce::AudioParameterFloat* modFilterCutoff, * modFilterResonance;
juce::AudioParameterFloat* modLfoRate;
juce::AudioParameterBool* modLfoSync;
juce::AudioParameterChoice* modLfoSyncDiv, * modLfoWaveform;
juce::AudioParameterFloat* modLfoFilterDepth, * modLfoSpeedDepth;
juce::AudioParameterBool* modPhaserEnabled;
juce::AudioParameterFloat* modPhaserDepth, * modPhaserFeedback;
juce::AudioParameterInt* modPhaserStages;
juce::AudioParameterBool* modRingModEnabled;
juce::AudioParameterFloat* modRingModMix;
/** Host tempo for LFO sync */
std::atomic<float> currentBpm{ 120.f };
private:
juce::AudioParameterChoice* playbackMode;
juce::AudioParameterInt* fxOrder;