summaryrefslogtreecommitdiff
path: root/client/global.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-06-16 21:23:55 +0200
committertpart <tpart120@proton.me>2025-06-16 21:24:00 +0200
commit06732a583a5dd1c4309d1eaecb31b58dcc618fca (patch)
treeaf0e8cb6d31c4f03c53dc677c93061a1b2e0fd96 /client/global.gd
parentd07c805a41a7c83480833dea336ef9b6c88d0e47 (diff)
downloadhurrycurry-06732a583a5dd1c4309d1eaecb31b58dcc618fca.tar
hurrycurry-06732a583a5dd1c4309d1eaecb31b58dcc618fca.tar.bz2
hurrycurry-06732a583a5dd1c4309d1eaecb31b58dcc618fca.tar.zst
Fix on screen control setting not working; Add support for two-handed on screen buttons. Fixes #238
Diffstat (limited to 'client/global.gd')
-rw-r--r--client/global.gd3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/global.gd b/client/global.gd
index f9682cbf..389bfd54 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -21,6 +21,8 @@ extends Node
signal using_joypad_change(using: bool)
signal using_touch_change(using: bool)
+@warning_ignore("UNUSED_SIGNAL")
+signal hand_count_change(count: bool)
const VERSION := "2.3.1"
@@ -56,6 +58,7 @@ var settings: Dictionary
var settings_tree: GameSetting
var game_paused := false
+var hand_count := 0
var server_url = ""
var error_message = ""