diff options
| author | 2026-01-15 20:17:39 -0500 | |
|---|---|---|
| committer | 2026-01-15 20:17:39 -0500 | |
| commit | 186a83ded716920f89ac97d7e81511bdb665fb9b (patch) | |
| tree | 711629d1390f294415b2ea2f28ae6491ad344c16 /Config.cs | |
| parent | 43683023fa06414ffd356cf9b5f8df41d8e5bfe4 (diff) | |
| download | NewCamera-186a83ded716920f89ac97d7e81511bdb665fb9b.tar.gz NewCamera-186a83ded716920f89ac97d7e81511bdb665fb9b.tar.bz2 NewCamera-186a83ded716920f89ac97d7e81511bdb665fb9b.zip | |
More WIP
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -57,7 +57,7 @@ namespace MHWNewCamera }
public String Name => "MHWNewCamera";
- public String Version => "3.1";
+ public String Version => "4.0";
private static Dictionary<string, Button> buttonMap = new Dictionary<string, Button>
{
@@ -118,15 +118,16 @@ namespace MHWNewCamera public bool ApplyShadowRadius { get; set; } = false;
public bool HigherShadowDetailInHoarfrost { get; set; } = false;
public bool SSAOAdjustments { get; set; } = false;
- public bool DisableLodLimits { get; set; } = false;
- public bool ApplyLodFactors { get; set; } = false;
- public float FoliageLodBias { get; set; } = 3.0f;
- public float TerrainLodBias { get; set; } = 6.0f;
- public float SnowLodBias { get; set; } = 32.0f;
- public float FoliageLodFactor { get; set; } = 0.0f;
- public float TerrainLodFactor { get; set; } = 0.0f;
+ public bool SSRAdjustments { get; set; } = false;
+ public bool EnableHQMode { get; set; } = false;
+ public bool DisableLODLimits { get; set; } = false;
+ public float FoliageLODBias { get; set; } = 3.0f;
+ public float TerrainLODBias { get; set; } = 16.0f;
+ public float FoliageLODFactor { get; set; } = 0.0f;
+ public float TerrainLODFactor { get; set; } = 0.0f;
+ public float SnowLODBias { get; set; } = 32.0f;
+ public bool ApplyLODFactors { get; set; } = false;
public bool LargerFoliageSwayRange { get; set; } = false;
public bool DisableReducedRateAnimations { get; set; } = false;
- public bool HQMode { get; set; } = false;
}
}
|