I am testing button and knob for 9~15, but they don't work.
Then I found problem in the MakeInputState() & UpdateState() of InputHandle.cs.
fix button and toggle value array to solve this issue
_buttons[bit] ->_buttons[bit + i * 8]
_toggles[bit] -> _toggles[bit + i * 8]
here is fixed InputHandle.cs
InputHandle.cs.zip
I am testing button and knob for 9~15, but they don't work.
Then I found problem in the MakeInputState() & UpdateState() of InputHandle.cs.
fix button and toggle value array to solve this issue
_buttons[bit] ->_buttons[bit + i * 8]
_toggles[bit] -> _toggles[bit + i * 8]
here is fixed InputHandle.cs
InputHandle.cs.zip