-
-
Notifications
You must be signed in to change notification settings - Fork 21.5k
New issue
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
Input triggered multiple times on SteamDeck #85933
Comments
Please try using func _input(event: InputEvent) -> void:
if event.is_action_pressed("ui_accept"):
i += 1
print(i) # prints the amount of times is_action_just_pressed() got triggered despite the documentation saying it only triggers once per button press
|
This sounds eerily similar to the issue fixed by #76045 |
It works! Thank you very much! |
I'm not sure this is fixed? Is it not a bug in the end? |
I had a look at the MRP of #76045 and that PR is unrelated to this issue (it has nothing to do with This bug report looks more like a duplicate of #80158 and is based on using |
Tested versions
4.1.2, 4.1.3, and 4.2 all of them are affected and it would take me forever to test more versions with my download speeds
System information
SteamOS 3.5.7
Issue description
is_action_just_pressed() triggers multiple times on SteamDeck when executed under the _input() function.
Steps to reproduce
Minimal reproduction project (MRP)
SteamDeck Bug.zip
The text was updated successfully, but these errors were encountered: