From 54896e4883f1290c66322d2d55b2cda29b342190 Mon Sep 17 00:00:00 2001 From: Alexei Kotov Date: Mon, 13 Jun 2022 18:19:47 +0300 Subject: [PATCH] Disable all the non-vanilla Lua camera settings by default --- files/data/scripts/omw/camera/settings.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files/data/scripts/omw/camera/settings.lua b/files/data/scripts/omw/camera/settings.lua index 06cbbfc6f0..be95ce586c 100644 --- a/files/data/scripts/omw/camera/settings.lua +++ b/files/data/scripts/omw/camera/settings.lua @@ -40,14 +40,14 @@ I.Settings.registerGroup({ permanentStorage = true, order = 0, settings = { - boolSetting('', 'viewOverShoulder', true), + boolSetting('', 'viewOverShoulder', false), floatSetting('', 'shoulderOffsetX', 30), floatSetting('', 'shoulderOffsetY', -10), - boolSetting('', 'autoSwitchShoulder', true), + boolSetting('', 'autoSwitchShoulder', false), floatSetting('', 'zoomOutWhenMoveCoef', 20), - boolSetting('', 'previewIfStandStill', true), - boolSetting('', 'deferredPreviewRotation', true), - boolSetting('', 'ignoreNC', true), + boolSetting('', 'previewIfStandStill', false), + boolSetting('', 'deferredPreviewRotation', false), + boolSetting('', 'ignoreNC', false), boolSetting('', 'move360', false), floatSetting('', 'move360TurnSpeed', 5), boolSetting('', 'slowViewChange', false), @@ -63,7 +63,7 @@ I.Settings.registerGroup({ permanentStorage = true, order = 1, settings = { - boolSetting('headBobbing_', 'enabled', true), + boolSetting('headBobbing_', 'enabled', false), floatSetting('headBobbing_', 'step', 90), floatSetting('headBobbing_', 'height', 3), floatSetting('headBobbing_', 'roll', 0.2),