valde/static/js/modules/instruments/monosynth.js
2024-01-26 00:08:03 +01:00

14 lines
203 B
JavaScript

export const monosynth = new Tone.MonoSynth({
volume: -9,
envelope: {
attack: 0.01,
},
filterEnvelope: {
attack: 0.001,
decay: 0.01,
sustain: 0.9,
baseFrequency: 1000,
octaves: 1.6
}
})