Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
FigBug committed Feb 15, 2024
1 parent c7d3ac9 commit 92ef759
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/juce
Submodule juce updated 166 files
2 changes: 2 additions & 0 deletions plugin/Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

//==============================================================================
Expand Down
2 changes: 1 addition & 1 deletion plugin/Source/PluginProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class WavetableAudioProcessor : public gin::Processor,
{
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);

Expand Down

0 comments on commit 92ef759

Please sign in to comment.