diff options
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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";
|