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
|
|
@ -13,6 +13,10 @@
|
|||
|
||||
#include "SamplerParameters.h"
|
||||
#include "Effects/Effect.h"
|
||||
#include "Effects/ModFilter.h"
|
||||
#include "Effects/Phaser.h"
|
||||
#include "Effects/RingMod.h"
|
||||
#include "LFO.h"
|
||||
#include "Stretcher.h"
|
||||
#include <libMTSClient.h>
|
||||
|
||||
|
|
@ -257,6 +261,13 @@ private:
|
|||
int updateFXParamsTimer{ 0 };
|
||||
std::vector<Fx> effects;
|
||||
|
||||
// Modulation section
|
||||
ModLFO modLFO;
|
||||
ModFilter modFilter;
|
||||
PhaserEffect modPhaser;
|
||||
RingModEffect modRingMod;
|
||||
juce::AudioBuffer<float> modLfoBuffer;
|
||||
|
||||
MTSClient* mtsClient{ nullptr };
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue