We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Thanks for pointing it out. Your solution is right. I don't have time for fixing it at the moment, I'll do it when I get available time.
Sorry, something went wrong.
keijiro
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: