summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-02 19:02:09 +0200
committertpart <tpart120@proton.me>2024-09-02 19:02:09 +0200
commit8cbfd5c58a1617250294866f290bdf2c9f16a122 (patch)
treef3ababe97e2c7f0c37c3414d85f536556391d73a
parent1b1d276c83e48d38e10277caf18a260871ce80a5 (diff)
downloadhurrycurry-8cbfd5c58a1617250294866f290bdf2c9f16a122.tar
hurrycurry-8cbfd5c58a1617250294866f290bdf2c9f16a122.tar.bz2
hurrycurry-8cbfd5c58a1617250294866f290bdf2c9f16a122.tar.zst
Disable camera rotation interpolation by defaultv1.6.0
-rw-r--r--client/global.gd2
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),