summaryrefslogtreecommitdiff
path: root/Config.cs
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-10-21 19:55:45 -0400
committerAndrew Opalach <andrew@akon.city> 2025-10-21 19:55:45 -0400
commit2202728621dcae082c16a053442bbf5441243441 (patch)
treed5537f9d5211d7c7ae0708965108b7983183af3e /Config.cs
parentc81d0495026d6e6e7e6fd38e2cdbb36c89d6bb78 (diff)
downloadNewCamera-2202728621dcae082c16a053442bbf5441243441.tar.gz
NewCamera-2202728621dcae082c16a053442bbf5441243441.tar.bz2
NewCamera-2202728621dcae082c16a053442bbf5441243441.zip
Fix shadow res patch crashing on Windows
- Always disable character fade in free camera. - Save lod factors in config. - Fix using face buttons or d-pad in free camera toggle bind. - Halve camera roll speed. - Clamp adjusted FOV from 1 to 179. - Re-organize UI. Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Config.cs')
-rwxr-xr-xConfig.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/Config.cs b/Config.cs
index df575c4..4ff79e1 100755
--- a/Config.cs
+++ b/Config.cs
@@ -55,7 +55,7 @@ namespace MHWNewCamera
}
public String Name => "MHWNewCamera";
- public String Version => "2.0";
+ public String Version => "2.1";
private static Dictionary<string, Button> buttonMap = new Dictionary<string, Button>
{
@@ -104,12 +104,15 @@ namespace MHWNewCamera
public String Selected { get; set; } = "";
public Dictionary<String, SavedPosition> Positions { get; set; } = new Dictionary<String, SavedPosition>();
- public bool DisableCharacterFade { get; set; } = false;
-
public bool DoubleShadowResolution { get; set; } = false;
+ public bool LargerShadowRange { get; set; } = false;
public bool SlightlySofterShadows { get; set; } = false;
public bool SofterShadows { get; set; } = false;
- public bool HigherLods { get; set; } = false;
+ public bool ApplyLodFactors { get; set; } = false;
+ public float LodFactor1 { get; set; } = 0.0f;
+ public float LodFactor2 { get; set; } = 0.0f;
+ public float FoliageLodFactor { get; set; } = 1.0f;
+ public float TerrainLodFactor { get; set; } = 32.0f;
public bool LargerFoliageSwayRange { get; set; } = false;
}
}