aboutsummaryrefslogtreecommitdiff
path: root/client/settings.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-08-31 12:32:42 +0200
committertpart <tpart120@proton.me>2025-08-31 12:32:42 +0200
commit005be6d7efc606f69483aff87e540f3ce8ea9fb6 (patch)
tree7bcd7606e04bf6bd97b4c282a92b47ec4b950bee /client/settings.gd
parent1153f8b8c6dafa7284caadceefff327ad6ca28a5 (diff)
downloadhurrycurry-005be6d7efc606f69483aff87e540f3ce8ea9fb6.tar
hurrycurry-005be6d7efc606f69483aff87e540f3ce8ea9fb6.tar.bz2
hurrycurry-005be6d7efc606f69483aff87e540f3ce8ea9fb6.tar.zst
Add option to toggle overlay visibility
Diffstat (limited to 'client/settings.gd')
-rw-r--r--client/settings.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/settings.gd b/client/settings.gd
index 978c0fac..a17e79fa 100644
--- a/client/settings.gd
+++ b/client/settings.gd
@@ -57,6 +57,7 @@ static func get_root():
SettingsCategory.new("ui", [
DropdownSetting.new("touch_controls", "automatic", ["automatic", "enabled", "disabled"]),
DropdownSetting.new("language", "system", Global.language_list()),
+ ToggleSetting.new("hide_overlays", false),
DropdownSetting.new("scale_mode", "resize", ["resize", "disabled"]),
RangeSetting.new("scale_factor", 1. if not Global.on_mobile() else 1.5, 0.5, 1.5, 3),
]),