Browse Source

Clean up Braids param quantities.

tags/v1.1.0
Andrew Belt 5 years ago
parent
commit
13df8e81f8
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/Braids.cpp

+ 4
- 4
src/Braids.cpp View File

@@ -41,12 +41,12 @@ 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");
configParam(FINE_PARAM, -1.0, 1.0, 0.0, "Fine frequency adjustment");
configParam(COARSE_PARAM, -5.0, 3.0, -1.0, "Coarse frequency adjustment");
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(FM_PARAM, -1.0, 1.0, 0.0, "FM"); configParam(FM_PARAM, -1.0, 1.0, 0.0, "FM");
configParam(TIMBRE_PARAM, 0.0, 1.0, 0.5, "Timbre");
configParam(TIMBRE_PARAM, 0.0, 1.0, 0.5, "Timbre", "%", 0.f, 100.f);
configParam(MODULATION_PARAM, -1.0, 1.0, 0.0, "Modulation"); configParam(MODULATION_PARAM, -1.0, 1.0, 0.0, "Modulation");
configParam(COLOR_PARAM, 0.0, 1.0, 0.5, "Color");
configParam(COLOR_PARAM, 0.0, 1.0, 0.5, "Color", "%", 0.f, 100.f);


memset(&osc, 0, sizeof(osc)); memset(&osc, 0, sizeof(osc));
osc.Init(); osc.Init();


Loading…
Cancel
Save