Get Modwheel value? (Callback)
-
What's the modern way to get a callback for the modwheel in Hise?
I found an old post about it, but it seems outdated.
-
Nevermind I solved it
function onController() { if(Message.getControllerNumber() == 1) // Modwheel { Console.print(Message.getControllerValue() / 127.0); } if(Message.getControllerNumber() == 128) // Pitchwheel { Console.print(Message.getControllerValue() / 127.0 / 127.0); } }
-
G griffinboy marked this topic as a question
-
G griffinboy has marked this topic as solved
-
@griffinboy said in Get Modwheel value? (Callback):
if(Message.getControllerNumber() == 128) // Pitchwheel
There's also a constant for this
Message.PITCH_BEND_CC