Tune synth down one octave; add LFO1/LFO2 OSC2 phase destination

This commit is contained in:
Armin 2026-07-15 23:51:58 +02:00
commit a8928fc6a4
3 changed files with 13 additions and 4 deletions

View file

@ -1,7 +1,7 @@
#pragma once
#include <cmath>
enum class LFODest { FilterCutoff = 0, OSC1Freq, OSC2Freq, BothOsc };
enum class LFODest { FilterCutoff = 0, OSC1Freq, OSC2Freq, BothOsc, OSC2Phase };
enum class LFOShape { Sine = 0, Triangle, Saw, Square };
class LFO {