diff options
-rw-r--r-- | BowelyzerConfig.sc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/BowelyzerConfig.sc b/BowelyzerConfig.sc index afb3199..287aad4 100644 --- a/BowelyzerConfig.sc +++ b/BowelyzerConfig.sc @@ -18,8 +18,12 @@ BowelyzerConfig{ \pitchDownSample, \sendReplyFreq ]; - const <controlsWithRanger = #[ \test]; - const <controlsWithKnob = #[ \test]; + const <controlsWithRanger = #[ + \test + ]; + const <controlsWithKnob = #[ + \test + ]; const <hasToBeString = #[ \forwardAddress, @@ -105,7 +109,7 @@ BowelyzerConfig{ addControlSpecs{ ControlSpec.specs[\amplitudeAttackTime] = ControlSpec(0.001, 10, \lin, 0.001, 0.01, units: "s"); ControlSpec.specs[\amplitudeReleaseTime] = ControlSpec(0.001, 10, \lin, 0.001, 0.01, units: "s"); - ControlSpec.specs[\hfHainsworth] = ControlSpec(0.0, 1.0, \lin, 0.001, 0.0, units: ""); + ControlSpec.specs[\hfHainsworth] = ControlSpec(0.0, 1.0, \lin, 0.001, 1.0, units: ""); ControlSpec.specs[\hfFoote] = ControlSpec(0.0, 1.0, \lin, 0.001, 0.0, units: ""); ControlSpec.specs[\hfThreshold] = ControlSpec(0.0, 1.0, \lin, 0.001, 1.0, units: ""); ControlSpec.specs[\hfWaitTime] = ControlSpec(0.0, 1.0, \lin, 0.001, 0.04, units: "s"); |