Browse Source

Merge pull request #102 from Kautenja/patch-1

Fix description of Frequency, Shape, and Ramp Mode Parameters
pull/104/head
Andrew Belt GitHub 4 years ago
parent
commit
16d14c9887
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/Tides2.cpp

+ 3
- 3
src/Tides2.cpp View File

@@ -103,9 +103,9 @@ struct Tides2 : Module {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configParam(RANGE_PARAM, 0.0, 1.0, 0.0, "Frequency range");
configParam(MODE_PARAM, 0.0, 1.0, 0.0, "Output mode");
configParam(FREQUENCY_PARAM, -48, 48, 0.0, "Ramp mode");
configParam(SHAPE_PARAM, 0.0, 1.0, 0.5, "Frequency");
configParam(RAMP_PARAM, 0.0, 1.0, 0.0, "Shape");
configParam(FREQUENCY_PARAM, -48, 48, 0.0, "Frequency");
configParam(SHAPE_PARAM, 0.0, 1.0, 0.5, "Shape");
configParam(RAMP_PARAM, 0.0, 1.0, 0.0, "Ramp mode");
configParam(SMOOTHNESS_PARAM, 0.0, 1.0, 0.5, "Waveshape transformation");
configParam(SLOPE_PARAM, 0.0, 1.0, 0.5, "Ascending/descending ratio");
configParam(SHIFT_PARAM, 0.0, 1.0, 0.5, "Output polarization and shifting");


Loading…
Cancel
Save