This commit is contained in:
michalcourson
2025-11-04 20:13:19 -05:00
parent f5245eb557
commit cf0498a121
5 changed files with 28 additions and 4 deletions

View File

@ -156,6 +156,7 @@ public:
}
float getInputPitch() const { return sample_rate_ / in_period; }
float getOutputPitch() const { return sample_rate_ / out_period; }
void SetHarmonyMix(float mix);
float out_midi = 40;
ShifterVoice voices[MAX_VOICES];
@ -185,6 +186,8 @@ private:
double smear_step = 0.003;
bool onset_trigger = false;
bool pitch_trigger = false;
float harmony_mix = 0.0f;
float melody_mix = 0.0f;
int trigger_bank;