This commit is contained in:
Jade (Rose) Rowland 2024-05-17 00:27:34 -04:00
parent 27d8bae671
commit d49c9dce4f
3 changed files with 67 additions and 4 deletions

View file

@ -471,6 +471,8 @@ export const superdough = async (value, t, hapDuration) => {
shape !== undefined && chain.push(getWorklet(ac, 'shape-processor', { shape, postgain: shapevol }));
distort !== undefined && chain.push(getWorklet(ac, 'distort-processor', { distort, postgain: distortvol }));
chain.push(getWorklet(ac, 'ladder-processor', { cutoff: 500, q: 1 }));
compressorThreshold !== undefined &&
chain.push(
getCompressor(ac, compressorThreshold, compressorRatio, compressorKnee, compressorAttack, compressorRelease),