diff options
author | tpart <tpart120@proton.me> | 2025-06-16 21:23:55 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2025-06-16 21:24:00 +0200 |
commit | 06732a583a5dd1c4309d1eaecb31b58dcc618fca (patch) | |
tree | af0e8cb6d31c4f03c53dc677c93061a1b2e0fd96 /client/settings.gd | |
parent | d07c805a41a7c83480833dea336ef9b6c88d0e47 (diff) | |
download | hurrycurry-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/settings.gd')
-rw-r--r-- | client/settings.gd | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/client/settings.gd b/client/settings.gd index 57568670..35bdf02d 100644 --- a/client/settings.gd +++ b/client/settings.gd @@ -144,12 +144,6 @@ static func h_volume_master(value: float): Sound.set_volume(0, value) static func h_volume_music(value: float): Sound.set_volume(1, value) static func h_volume_sfx(value: float): Sound.set_volume(2, value) -static func h_touch(mode: String): - match mode: - "enabled": Global.using_touch = true - "disabled": Global.using_touch = false - Global.using_touch_change.emit() - static func h_language(language: String): if language == "system": language = OS.get_locale_language() TranslationServer.set_locale(language) |