How to listen to input-wide 'noteon' event for an input in v3?
I've noticed that in version 3 there're no 'noteon' and 'controlchange' events on MIDI Inputs. So do I need to iterate over all the channels manually if I want to listen to all channels of my OP-Z?
It seems not optimal for the case – having 16 separate listeners may be a performance issue. Or not? ) I suppose you've answered this question a couple of times, but I've found only the Output perspective. What about inputs? I was using global Input 'noteon' listeners in prev version and it was nice. )
Comments
The
noteon
andcontrolchange
events are dispatched by theInput
object so you can definitely listen to all channel of a device in v3 just as you were able to do in v2. You can check out the documentation for theInput.addListener()
for more details.