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
Immediately after starting, pressing and holding any location on right of screen moves as if interacting with left control.
The text was updated successfully, but these errors were encountered:
changing line #81 in the joystick script to this fixes the issue:
if event.index == joystick_finger_index and event.position.x < window_width / 2:
Edit: this seems to cause some additional issues. see better fix below.
Sorry, something went wrong.
The previous fix seems to be less than ideal causing some other issues. I believe the following is a better fix:
Changed joystick_finger_index = 0 to joystick_finger_index = null (line 13)
joystick_finger_index = 0
joystick_finger_index = null
can confirm, also saw this bug
No branches or pull requests
Immediately after starting, pressing and holding any location on right of screen moves as if interacting with left control.
The text was updated successfully, but these errors were encountered: