Skip to content

Commit

Permalink
Delay extendable, not just with factors (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul authored Nov 30, 2023
1 parent 9853fda commit 3894b73
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/sst/effects/Delay.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ template <typename FXConfig> struct Delay : core::EffectTemplateBase<FXConfig>
return pmd()
.asPercent()
.withName("Crossfeed")
.extendable()
.withExtendFactors(2.f, -1.f)
.withDefault(0.f);

Expand All @@ -128,6 +129,7 @@ template <typename FXConfig> struct Delay : core::EffectTemplateBase<FXConfig>
.withLinearScaleFormatting("cents", 100.f)
.withType(pmd::FLOAT)
.withRange(0.f, 2.f)
.extendable()
.withExtendFactors(6.f)
.withDefault(0.f);

Expand Down

0 comments on commit 3894b73

Please sign in to comment.