spessasynth_core 3.26.5 → 3.26.6

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.
@@ -10,6 +10,7 @@ import { computeModulators } from "../../engine_components/compute_modulator.js"
10
10
  export function channelPressure(pressure)
11
11
  {
12
12
  this.midiControllers[NON_CC_INDEX_OFFSET + modulatorSources.channelPressure] = pressure << 7;
13
+ this.updateChannelTuning();
13
14
  this.voices.forEach(v =>
14
15
  computeModulators(
15
16
  v,
@@ -233,6 +233,17 @@ class SpessaSynthProcessor
233
233
  */
234
234
  chorusGain = 1;
235
235
 
236
+ /**
237
+ * Set via system exclusive
238
+ * @type {number}
239
+ */
240
+ reverbSend = 1;
241
+ /**
242
+ * Set via system exclusive
243
+ * @type {number}
244
+ */
245
+ chorusSend = 1;
246
+
236
247
  /**
237
248
  * Maximum number of voices allowed at once
238
249
  * @type {number}