You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
I am trying to support Steam Deck full controller support. My game includes text inputs for entering emails, usernames, etc. When entering text with a controller, Steam requires you to open the overlay with an on-screen keyboard using one of these two functions:
The current extension does not support ShowFloatingGamepadTextInput(), which is preferred nowadays over ShowGamepadTextInput(). More importantly though, the current extension does not send GamepadTextInputDismissed_t or FloatingGamepadTextInputDismissed_t to the steamworks listener.
Currently, entering text input with a gampad is unreliable and buggy at best. For example, there is no way to distinguish between the Submit or Cancel buttons because that information is accessed through the steamworks listener messages, which are not sent.
The text was updated successfully, but these errors were encountered:
whiteboxdev
changed the title
Gamepad Text Input Errors
Unable to support gamepad text input
Feb 15, 2023
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am trying to support Steam Deck full controller support. My game includes text inputs for entering emails, usernames, etc. When entering text with a controller, Steam requires you to open the overlay with an on-screen keyboard using one of these two functions:
When the text is submitted and the overlay closes, one of these two messages should be sent to the steamworks listener:
The current extension does not support
ShowFloatingGamepadTextInput()
, which is preferred nowadays overShowGamepadTextInput()
. More importantly though, the current extension does not sendGamepadTextInputDismissed_t
orFloatingGamepadTextInputDismissed_t
to the steamworks listener.Currently, entering text input with a gampad is unreliable and buggy at best. For example, there is no way to distinguish between the Submit or Cancel buttons because that information is accessed through the steamworks listener messages, which are not sent.
The text was updated successfully, but these errors were encountered: