This commit is contained in:
Roland Rabien 2024-02-14 19:34:53 -08:00
commit 92ef7597ed
4 changed files with 5 additions and 3 deletions

@ -1 +1 @@
Subproject commit b5bd0e3725ab46c698982483577ad882ae8c5460
Subproject commit f4331da4af33c58defae01341c7a7bf44c67e2a1

@ -1 +1 @@
Subproject commit 6c32c4df87ae34f7387445cf2ef9410db62c438c
Subproject commit e265be5a031a3ab8552502c00926c4b8d0cdba13

View file

@ -226,6 +226,8 @@ void WavetableAudioProcessor::LFOParams::setup (WavetableAudioProcessor& p, int
offset = p.addExtParam (id + "offset", nm + "Offset", "Offset", "", { -1.0, 1.0, 0.0, 1.0 }, 0.0, 0.0f);
fade = p.addExtParam (id + "fade", nm + "Fade", "Fade", "s", { -60.0, 60.0, 0.0, 0.2f, true }, 0.0f, 0.0f);
delay = p.addExtParam (id + "delay", nm + "Delay", "Delay", "s", { 0.0, 60.0, 0.0, 0.2f }, 0.0f, 0.0f);
xgrid = p.addIntParam (id + "xgrid", nm + "XGrid", "XGrid", "", { 2.0, 32.0, 1.0, 1.0 }, 8.0, 0.0f);
ygrid = p.addIntParam (id + "ygrid", nm + "YGrid", "YGrid", "", { 2.0, 32.0, 1.0, 1.0 }, 2.0, 0.0f);
}
//==============================================================================

View file

@ -120,7 +120,7 @@ public:
{
LFOParams() = default;
gin::Parameter::Ptr enable, sync, retrig, wave, rate, beat, depth, phase, offset, fade, delay;
gin::Parameter::Ptr enable, sync, retrig, wave, rate, beat, depth, phase, offset, fade, delay, xgrid, ygrid;
void setup (WavetableAudioProcessor& p, int idx);