bitwig/bitwig-extensions

SSL UF8 - Avoid checking the Last Value in updateVuValue

Opened this issue · 0 comments

If Vu Value is not received for a certain period of time, UF8's level meter will turns off.
The level meter may not display correctly in certain situations, such as Pads sound.

private void updateVuValue(final int value) {
if (isActive() && value != lastValue) {
getTarget().sendVuUpdate(index, value);
}
lastValue = value;
}

I modified like this:

  • remove && value != lastValue
private void updateVuValue(final int value) { 
     if (isActive()) { 
         getTarget().sendVuUpdate(index, value); 
     } 
     lastValue = value; 
 } 
Bitwig_VU-.-1080P-30P.mp4