Closed mhetrick closed 7 years ago
The inputs on Clouds and Branches now act as they do on their hardware counterparts. The Clouds code could potentially be more efficient. I think something like
const float leftSample = getf(inputs[IN_L_INPUT]); const float rightSample = inputs[IN_R_INPUT] ? getf(inputs[IN_R_INPUT]) : leftSample;
could work just to avoid the extra getf calls.
Thanks! I don't have Clouds so I missed this about its functionality.
The inputs on Clouds and Branches now act as they do on their hardware counterparts. The Clouds code could potentially be more efficient. I think something like
could work just to avoid the extra getf calls.