diff options
author | David Runge <dave@sleepmap.de> | 2016-07-03 14:15:08 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-07-03 14:15:08 +0200 |
commit | 92207b820a1a85d8bc39758d5301791b5b0c803a (patch) | |
tree | 09c02cc3fc6760266652c0880e9b50c6829244dc /BowelyzerConfig.sc | |
parent | 46f42d9eb08ce6e94b5fd9253d1ca8c954689928 (diff) | |
download | bowelyzer-92207b820a1a85d8bc39758d5301791b5b0c803a.tar.gz bowelyzer-92207b820a1a85d8bc39758d5301791b5b0c803a.tar.bz2 bowelyzer-92207b820a1a85d8bc39758d5301791b5b0c803a.tar.xz bowelyzer-92207b820a1a85d8bc39758d5301791b5b0c803a.zip |
BowelyzerConfig.sc: Properly structurizing controlsWithRanger and controlsWithKnob. Setting initial value for \hfHainsworth ControlSpec to 1.0.
Diffstat (limited to 'BowelyzerConfig.sc')
-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"); |