proper lpf mapping + remove redundant worklet params,

This commit is contained in:
Felix Roos 2025-06-01 21:20:28 +02:00
parent 483843bd0a
commit 5336569c25
No known key found for this signature in database
4 changed files with 30 additions and 31 deletions

View file

@ -22,10 +22,7 @@ Pattern.prototype.supradough = function () {
let o = getWorklet(
ac,
'dough-processor',
{
begin, // we might not need these, as we could send them via postMessage below
end,
},
{},
{
outputChannelCount: [2],
},

View file

@ -6,6 +6,7 @@ This program is free software: you can redistribute it and/or modify it under th
import * as strudel from '@strudel/core';
import { superdough, getAudioContext, setLogger, doughTrigger } from 'superdough';
import './supradough.mjs';
const { Pattern, logger, repl } = strudel;
setLogger(logger);