aboutsummaryrefslogtreecommitdiff
path: root/client/system/settings.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-24 00:11:10 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-24 00:11:10 +0200
commitf50f7dee84c93380bb9c6ca1b0dc209181293092 (patch)
treefcd4955ae70b3c30d5c61129c2072d77b37062f2 /client/system/settings.gd
parentc0d7f16a8ee2a5a30c0472784ffe7265503a6dd0 (diff)
downloadhurrycurry-f50f7dee84c93380bb9c6ca1b0dc209181293092.tar
hurrycurry-f50f7dee84c93380bb9c6ca1b0dc209181293092.tar.bz2
hurrycurry-f50f7dee84c93380bb9c6ca1b0dc209181293092.tar.zst
Add fps mouse sens setting
Diffstat (limited to 'client/system/settings.gd')
-rw-r--r--client/system/settings.gd4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/system/settings.gd b/client/system/settings.gd
index cd990216..97546c68 100644
--- a/client/system/settings.gd
+++ b/client/system/settings.gd
@@ -62,7 +62,9 @@ static func get_root():
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),
]),
- SettingsCategory.new("input", InputManager.settings()),
+ SettingsCategory.new("input", InputManager.settings([
+ RangeSetting.new("fps_mouse_sensitivity", 0.001, 0.0001, 0.003)
+ ])),
SettingsCategory.new("server", [
PathSetting.new("binary_path", "", FileDialog.FileMode.FILE_MODE_OPEN_FILE),
PathSetting.new("editor_binary_path", "", FileDialog.FileMode.FILE_MODE_OPEN_DIR),