Browse Source

Scale model param of Braids to number of models.

pull/114/head
Andrew Belt 3 years ago
parent
commit
41c7e2a563
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Braids.cpp

+ 1
- 1
src/Braids.cpp View File

@@ -40,7 +40,7 @@ struct Braids : Module {


Braids() { Braids() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS); config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS);
configParam(SHAPE_PARAM, 0.0, 1.0, 0.0, "Model");
configParam(SHAPE_PARAM, 0.0, 1.0, 0.0, "Model", "", 0.0, braids::MACRO_OSC_SHAPE_LAST_ACCESSIBLE_FROM_META);
configParam(FINE_PARAM, -1.0, 1.0, 0.0, "Fine frequency", " semitones"); configParam(FINE_PARAM, -1.0, 1.0, 0.0, "Fine frequency", " semitones");
configParam(COARSE_PARAM, -5.0, 3.0, -1.0, "Coarse frequency", " semitones", 0.f, 12.f, 12.f); configParam(COARSE_PARAM, -5.0, 3.0, -1.0, "Coarse frequency", " semitones", 0.f, 12.f, 12.f);
configParam(FM_PARAM, -1.0, 1.0, 0.0, "FM"); configParam(FM_PARAM, -1.0, 1.0, 0.0, "FM");


Loading…
Cancel
Save