Skip to content

Commit

Permalink
Merge pull request #61 from spessasus/pan-fix-test
Browse files Browse the repository at this point in the history
Fix CC 10 panning
  • Loading branch information
spessasus authored Oct 11, 2024
2 parents 6b24aa2 + a308f3c commit 7b84362
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 40 deletions.
3 changes: 2 additions & 1 deletion src/spessasynth_lib/soundfont/basic_soundfont/modulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ export const defaultModulators = [
new Modulator({ srcEnum: 0x020E, dest: generatorTypes.fineTune, amt: 12700, secSrcEnum: 0x0010, transform: 0 }),

// pan to uhh, pan
new Modulator({ srcEnum: 0x028A, dest: generatorTypes.pan, amt: 1000, secSrcEnum: 0x0, transform: 0 }),
// amount is 500 instead of 1000, see #59
new Modulator({ srcEnum: 0x028A, dest: generatorTypes.pan, amt: 500, secSrcEnum: 0x0, transform: 0 }),

// expression to attenuation
new Modulator({
Expand Down
Loading

0 comments on commit 7b84362

Please sign in to comment.