diff options
author | tpart <tpart120@proton.me> | 2024-09-02 19:02:09 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-02 19:02:09 +0200 |
commit | 8cbfd5c58a1617250294866f290bdf2c9f16a122 (patch) | |
tree | f3ababe97e2c7f0c37c3414d85f536556391d73a | |
parent | 1b1d276c83e48d38e10277caf18a260871ce80a5 (diff) | |
download | hurrycurry-1.6.0.tar hurrycurry-1.6.0.tar.bz2 hurrycurry-1.6.0.tar.zst |
Disable camera rotation interpolation by defaultv1.6.0
-rw-r--r-- | client/global.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/global.gd b/client/global.gd index 0a14ebdc..4c6de5a4 100644 --- a/client/global.gd +++ b/client/global.gd @@ -46,7 +46,7 @@ var using_touch := false @onready var default_settings := [ SettingsCategory.new(tr("Gameplay"), "gameplay", { "touch_controls": DropdownSetting.new(tr("Enable touch screen controls"), 0, [tr("Automatic"), tr("Enabled"), tr("Disabled")]), - "interpolate_camera_rotation": ToggleSetting.new(tr("Smooth camera rotation"), true), + "interpolate_camera_rotation": ToggleSetting.new(tr("Smooth camera rotation"), false), "invert_camera": ToggleSetting.new(tr("Invert camera movement"), false), "usernames": ToggleSetting.new(tr("Show username tags"), true), "setup_complete": ToggleSetting.new(tr("Initial setup complete. (Uncheck and restart to reenter)"), false), |