Fix lfos for vowels, phasers; fix ir index; more informative error message

This commit is contained in:
Aria 2026-01-01 12:02:54 -06:00
parent 882bcc513f
commit ebaf7624f9
4 changed files with 23 additions and 14 deletions

View file

@ -62,7 +62,10 @@ const getTargetParamsForControl = (control, nodes, subControl) => {
const lookupKey = subControl ? `${control}_${subControl}` : control;
const targetInfo = getControlData(lookupKey) ?? getControlData(control);
if (!targetInfo) {
errorLogger(new Error(`Could not find control data for target '${control}'`), 'superdough');
errorLogger(
new Error(`Could not find control data for target '${control}'. It may not be modulatable.`),
'superdough',
);
return { targetParams: [], paramName: control };
}
const paramName = targetInfo.param;