summaryrefslogtreecommitdiff
path: root/Config.cs
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-08-30 20:12:07 -0400
committerAndrew Opalach <andrew@akon.city> 2025-08-30 20:43:43 -0400
commit91de529c79fa8bfa6cf3188baa4804c1c5b75103 (patch)
tree55c165581a0404b27a4bd053023c6af248c8d25f /Config.cs
parentb622c127c667eeea71822ffd3e44a509c91e3e96 (diff)
downloadNewCamera-91de529c79fa8bfa6cf3188baa4804c1c5b75103.tar.gz
NewCamera-91de529c79fa8bfa6cf3188baa4804c1c5b75103.tar.bz2
NewCamera-91de529c79fa8bfa6cf3188baa4804c1c5b75103.zip
Improve special casing, increase precision of look
- New defaults. Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Config.cs')
-rwxr-xr-xConfig.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Config.cs b/Config.cs
index 10d7a39..59eb76a 100755
--- a/Config.cs
+++ b/Config.cs
@@ -17,9 +17,9 @@ namespace MHWNewCamera
public const float DEFAULT_SPEED = 3.00f;
public const float DEFAULT_ZOOM_SPEED = 1.0f;
public const float DEFAULT_SPEED_MODIFIER = 0.25f;
- public const float DEFAULT_SENSITIVITY = 2.0f;
- public const int DEFAULT_DEADZONE = 4500;
- public const float DEFAULT_PITCH_LIMIT = 88.25f;
+ public const float DEFAULT_SENSITIVITY = 1.95f;
+ public const int DEFAULT_DEADZONE = 4750;
+ public const double DEFAULT_PITCH_LIMIT = 88.25;
public Settings()
{
@@ -36,16 +36,16 @@ namespace MHWNewCamera
public float CameraSpeedModifier { get; set; }
public float CameraSensitivity { get; set; }
public int StickDeadzone { get; set; }
- public float CameraPitchLimit { get; set; }
+ public double CameraPitchLimit { get; set; }
}
public struct Preset
{
- public float FOV { get; set; }
+ public double FOV { get; set; }
public float Forward { get; set; }
public float Left { get; set; }
public float Up { get; set; }
- public float Roll { get; set; }
+ public double Roll { get; set; }
}
public String Name => "MHWNewCamera";