Improve Android controller and chat support

This commit is contained in:
Alexander Sellite 2026-08-03 20:49:19 -04:00
parent 3dc8ced5d2
commit ceef03eba5
24 changed files with 2485 additions and 128 deletions

View file

@ -490,6 +490,11 @@ func _process(delta: float) -> void:
func _input(event: InputEvent) -> void:
if not visible:
return
if (
_settings_panel.visible
and _settings_panel.is_controller_mapping_capturing()
):
return
if _join_game_page.visible:
if event.is_action_pressed("ui_cancel"):
_close_join_game()