supersonic-scsynth 0.2.0 → 0.2.1
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/dist/supersonic.js
CHANGED
|
@@ -799,9 +799,9 @@ var ScsynthOSC = class {
|
|
|
799
799
|
this.ringBufferBase = ringBufferBase;
|
|
800
800
|
this.bufferConstants = bufferConstants;
|
|
801
801
|
try {
|
|
802
|
-
this.workers.oscOut = new Worker("./
|
|
803
|
-
this.workers.oscIn = new Worker("./
|
|
804
|
-
this.workers.debug = new Worker("./
|
|
802
|
+
this.workers.oscOut = new Worker(new URL("./workers/osc_out_prescheduler_worker.js", import.meta.url));
|
|
803
|
+
this.workers.oscIn = new Worker(new URL("./workers/osc_in_worker.js", import.meta.url));
|
|
804
|
+
this.workers.debug = new Worker(new URL("./workers/debug_worker.js", import.meta.url));
|
|
805
805
|
this.setupWorkerHandlers();
|
|
806
806
|
const initPromises = [
|
|
807
807
|
this.initWorker(this.workers.oscOut, "OSC SCHEDULER+WRITER"),
|
package/dist/wasm/manifest.json
CHANGED
|
Binary file
|
package/package.json
CHANGED