aboutsummaryrefslogtreecommitdiff
path: root/client/global.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-07-30 19:15:42 +0200
committertpart <tpart120@proton.me>2024-07-30 19:15:42 +0200
commit5ce7164a42ded5f10812862c6ba3680c760ff186 (patch)
tree08840da83147733894c4f9b00fb2b1a115b128e3 /client/global.gd
parent78bffb007089657660dc2bf532f3f5a99452bb2f (diff)
downloadhurrycurry-5ce7164a42ded5f10812862c6ba3680c760ff186.tar
hurrycurry-5ce7164a42ded5f10812862c6ba3680c760ff186.tar.bz2
hurrycurry-5ce7164a42ded5f10812862c6ba3680c760ff186.tar.zst
Increase default UI scale on mobile
Diffstat (limited to 'client/global.gd')
-rw-r--r--client/global.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/global.gd b/client/global.gd
index a6bc349d..9a010e96 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -54,7 +54,7 @@ var default_settings := {
"server_binary": TextSetting.new(tr("Server binary (leave empty to search PATH)"), "", tr("Enter path")),
"server_data": TextSetting.new(tr("Server data directory (leave empty to auto-detect)"), "", tr("Enter path")),
"ui_scale_mode": DropdownSetting.new(tr("UI scale mode"), 0, [tr("Resize"), tr("Disabled")]),
- "ui_scale_factor": RangeSetting.new(tr("UI scale factor"), 1, 0.5, 1.5, 3),
+ "ui_scale_factor": RangeSetting.new(tr("UI scale factor"), 1 if not on_mobile else 1.5, 0.5, 1.5, 3),
"aa": DropdownSetting.new(tr("Anti-aliasing"), 2 if on_high_end() else 0, [tr("Disabled"), "FXAA", "MSAA 2x", "MSAA 4x"]),
"ssao": ToggleSetting.new(tr("Ambient occlusion"), true if on_high_end() else false),
"taa": ToggleSetting.new(tr("Temporal Anti-Aliasing"), false),