spessasynth_lib 3.20.21 → 3.20.23
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/@types/synthetizer/synthetizer.d.ts +1 -1
- package/@types/synthetizer/worklet_system/worklet_utilities/worklet_processor_channel.d.ts +3 -3
- package/package.json +1 -1
- package/synthetizer/synthetizer.js +2 -2
- package/synthetizer/worklet_processor.min.js +9 -9
- package/synthetizer/worklet_system/main_processor.js +2 -2
- package/synthetizer/worklet_system/message_protocol/handle_message.js +3 -2
- package/synthetizer/worklet_system/worklet_methods/data_entry.js +4 -20
- package/synthetizer/worklet_system/worklet_methods/note_on.js +1 -0
- package/synthetizer/worklet_system/worklet_methods/snapshot.js +2 -2
- package/synthetizer/worklet_system/worklet_methods/vibrato_control.js +3 -3
- package/synthetizer/worklet_system/worklet_utilities/volume_envelope.js +63 -41
- package/synthetizer/worklet_system/worklet_utilities/worklet_processor_channel.js +2 -2
- package/utils/buffer_to_wav.js +2 -2
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
* @property {boolean} lockPreset - indicates whether the program on the channel is locked
|
|
20
20
|
* @property {boolean} presetUsesOverride - indcates if the channel uses a preset from the override soundfont.
|
|
21
21
|
*
|
|
22
|
-
* @property {boolean}
|
|
22
|
+
* @property {boolean} lockGSNRPNParams - indicates whether the GS NRPN parameters are enabled
|
|
23
23
|
* @property {Object} channelVibrato - vibrato settings for the channel
|
|
24
24
|
* @property {number} channelVibrato.depth - depth of the vibrato effect (cents)
|
|
25
25
|
* @property {number} channelVibrato.delay - delay before the vibrato effect starts (seconds)
|
|
@@ -119,9 +119,9 @@ export type WorkletProcessorChannel = {
|
|
|
119
119
|
*/
|
|
120
120
|
presetUsesOverride: boolean;
|
|
121
121
|
/**
|
|
122
|
-
* - indicates whether the
|
|
122
|
+
* - indicates whether the GS NRPN parameters are enabled
|
|
123
123
|
*/
|
|
124
|
-
|
|
124
|
+
lockGSNRPNParams: boolean;
|
|
125
125
|
/**
|
|
126
126
|
* - vibrato settings for the channel
|
|
127
127
|
*/
|
package/package.json
CHANGED
|
@@ -401,9 +401,9 @@ export class Synthetizer {
|
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
/*
|
|
404
|
-
*
|
|
404
|
+
* Disables the GS NRPN parameters like vibrato or drum key tuning
|
|
405
405
|
*/
|
|
406
|
-
|
|
406
|
+
disableGSNRPparams()
|
|
407
407
|
{
|
|
408
408
|
// rate -1 disables, see worklet_message.js line 9
|
|
409
409
|
// channel -1 is all
|