mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
starting o microtonal support
This commit is contained in:
parent
19e1f80726
commit
c90a502035
3 changed files with 18 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <JuceHeader.h>
|
||||
#include "Cfg.h"
|
||||
#include "MTS-ESP/Client/libMTSClient.h"
|
||||
|
||||
class WavetableAudioProcessor;
|
||||
|
||||
|
|
@ -12,6 +13,8 @@ class WavetableVoice : public gin::SynthesiserVoice,
|
|||
public:
|
||||
WavetableVoice (WavetableAudioProcessor& p);
|
||||
|
||||
~WavetableVoice() override;
|
||||
|
||||
void noteStarted() override;
|
||||
void noteRetriggered() override;
|
||||
void noteStopped (bool allowTailOff) override;
|
||||
|
|
@ -59,4 +62,6 @@ public:
|
|||
gin::EasedValueSmoother<float> noteSmoother;
|
||||
|
||||
float ampKeyTrack = 1.0f;
|
||||
|
||||
MTSClient* mtsClient = nullptr;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue