Working version of supersaw, almost on wavetable

This commit is contained in:
Aria 2025-12-04 12:40:28 -06:00
parent 600ab0a83e
commit 6610713018
4 changed files with 22 additions and 5 deletions

View file

@ -38,6 +38,10 @@ export const releaseNodeToPool = (node) => {
// not reusable
return;
}
if (node[IS_WORKLET_DEAD]) {
// Worklet already terminated, don't pool it
return;
}
// Fallback to a type-based key if the node was not created via getNodeFromPool
const key = node[POOL_KEY];
if (key == null) return;