Fix lfos for vowels, phasers; fix ir index; more informative error message
This commit is contained in:
parent
882bcc513f
commit
ebaf7624f9
4 changed files with 23 additions and 14 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue