Connecting all parameters to convolution generator

This commit is contained in:
Raphael Forment 2023-10-01 14:44:34 +02:00
parent e600b91a85
commit 2d07eeb518
2 changed files with 20 additions and 5 deletions

View file

@ -26,8 +26,11 @@ if (typeof AudioContext !== 'undefined') {
}
);
convolver.duration = d;
convolver.fade = fade;
convolver.revlp = revlp;
convolver.revdim = revdim;
};
convolver.setDuration(duration);
convolver.setDuration(duration, fade, revlp, revdim);
return convolver;
};
}