Skip to content

Commit

Permalink
remove console log and change reverb amounts
Browse files Browse the repository at this point in the history
  • Loading branch information
spessasus committed Sep 23, 2024
1 parent a59313e commit b030b9c
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 35 deletions.
4 changes: 2 additions & 2 deletions src/spessasynth_lib/soundfont/read_sf2/modulators.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,10 @@ export const defaultModulators = [
}),

// reverb effects to send
new Modulator({srcEnum: 0x00DB, dest: generatorTypes.reverbEffectsSend, amt: 200, secSrcEnum: 0x0, transform: 0}),
new Modulator({srcEnum: 0x00DB, dest: generatorTypes.reverbEffectsSend, amt: 750, secSrcEnum: 0x0, transform: 0}),

// chorus effects to send
new Modulator({srcEnum: 0x00DD, dest: generatorTypes.chorusEffectsSend, amt: 200, secSrcEnum: 0x0, transform: 0}),
new Modulator({srcEnum: 0x00DD, dest: generatorTypes.chorusEffectsSend, amt: 750, secSrcEnum: 0x0, transform: 0}),

// custom modulators heck yeah
// poly pressure to vibrato
Expand Down
1 change: 0 additions & 1 deletion src/spessasynth_lib/soundfont/read_sf2/soundfont.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ export class SoundFont2 extends BasicSoundFont
this.defaultModulators = newModulators;
this.defaultModulators.push(...oldDefaults.filter(m => !this.defaultModulators.find(mm => Modulator.isIdentical(m, mm))));
this.soundFontInfo[chunk.header] = chunk.chunkData;
SpessaSynthInfo("Default modulators:", this.defaultModulators.map(m => m.debugString()));
break;

default:
Expand Down
12 changes: 6 additions & 6 deletions src/spessasynth_lib/synthetizer/worklet_processor.min.js

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions src/website/minified/demo_main.min.js

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions src/website/minified/local_main.min.js

Large diffs are not rendered by default.

0 comments on commit b030b9c

Please sign in to comment.