spessasynth_lib 3.20.2 → 3.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/midi_parser/midi_loader.js +0 -1
- package/package.json +1 -1
- package/sequencer/worklet_sequencer/play.js +1 -3
- package/sequencer/worklet_sequencer/process_event.js +1 -2
- package/sequencer/worklet_sequencer/worklet_sequencer.js +1 -2
- package/synthetizer/worklet_processor.min.js +9 -9
- package/synthetizer/worklet_system/worklet_methods/note_on.js +4 -2
- package/synthetizer/worklet_system/worklet_methods/voice_control.js +7 -7
- package/synthetizer/worklet_system/worklet_utilities/modulation_envelope.js +143 -45
- package/synthetizer/worklet_system/worklet_utilities/stereo_panner.js +2 -2
- package/synthetizer/worklet_system/worklet_utilities/volume_envelope.js +302 -217
- package/synthetizer/worklet_system/worklet_utilities/worklet_modulator.js +7 -3
- package/synthetizer/worklet_system/worklet_utilities/worklet_voice.js +12 -14
package/package.json
CHANGED
|
@@ -264,10 +264,8 @@ export function play(resetTime = false)
|
|
|
264
264
|
}
|
|
265
265
|
if(!this.sendMIDIMessages)
|
|
266
266
|
{
|
|
267
|
-
const time = this.currentTime;
|
|
268
267
|
this.playingNotes.forEach(n => {
|
|
269
|
-
|
|
270
|
-
this.synth.noteOn(n.channel, n.midiNote, n.velocity, false, true, currentTime + timeOffset);
|
|
268
|
+
this.synth.noteOn(n.channel, n.midiNote, n.velocity, false, true);
|
|
271
269
|
});
|
|
272
270
|
}
|
|
273
271
|
this.setProcessHandler();
|