Hi crew, is there any way to debounce OSC outputs on faders? I'd like to only send OSC when the user lets go of the fader.
Yes, you can set its bypass
property to true
and onTouch
to
if (event.type == 'stop') {
send('/address', value)
}
1 Like
Awesome! I didn't know that there was an event object sent. Thanks!