Mostly working version

This commit is contained in:
Aria 2025-11-19 19:44:02 -06:00
parent 0dbca05de0
commit 19b710c401
9 changed files with 56 additions and 70 deletions

View file

@ -71,7 +71,7 @@ export function registerSynthSounds() {
stop(envEnd);
return {
node,
oscillator: o,
source: o,
stop: (endTime) => {
stop(endTime);
},
@ -141,7 +141,7 @@ export function registerSynthSounds() {
return {
node,
oscillator: o,
source: o,
stop: (endTime) => {
o.stop(endTime);
},
@ -208,7 +208,7 @@ export function registerSynthSounds() {
return {
node: envGain,
oscillator: o,
source: o,
stop: (time) => {
timeoutNode.stop(time);
},
@ -285,7 +285,7 @@ export function registerSynthSounds() {
return {
node: envGain,
oscillator: o,
source: o,
stop: (time) => {
timeoutNode.stop(time);
},
@ -363,7 +363,7 @@ export function registerSynthSounds() {
return {
node: envGain,
oscillator: o,
source: o,
stop: (time) => {
timeoutNode.stop(time);
},
@ -409,7 +409,7 @@ export function registerSynthSounds() {
stop(envEnd);
return {
node,
oscillator: o,
source: o,
stop: (endTime) => {
stop(endTime);
},
@ -503,7 +503,7 @@ export function getOscillator(s, t, value) {
return {
node: noiseMix?.node || o,
oscillator: o,
source: o,
stop: (time) => {
fmModulator.stop(time);
vibratoOscillator?.stop(time);