mirror of
https://codeberg.org/armin/justasample.git
synced 2026-09-01 04:10:48 +02:00
fixes, changes to gitignore
This commit is contained in:
parent
2ab046489f
commit
11d81cf1fd
17 changed files with 1160 additions and 16 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue