diff options
| author | 2026-01-11 19:22:40 -0500 | |
|---|---|---|
| committer | 2026-01-11 19:22:40 -0500 | |
| commit | 43683023fa06414ffd356cf9b5f8df41d8e5bfe4 (patch) | |
| tree | 3ea3ede1c5619d200060b83a57695209886d6078 /Config.cs | |
| parent | f68ae091abb6870f04f1ce2774ec64c254b74341 (diff) | |
| download | NewCamera-43683023fa06414ffd356cf9b5f8df41d8e5bfe4.tar.gz NewCamera-43683023fa06414ffd356cf9b5f8df41d8e5bfe4.tar.bz2 NewCamera-43683023fa06414ffd356cf9b5f8df41d8e5bfe4.zip | |
Tons of WIP stuff for the people
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -117,12 +117,16 @@ namespace MHWNewCamera public float ShadowRadiusOffset { get; set; } = 0.0005f;
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 LargerFoliageSwayRange { get; set; } = false;
+ public bool DisableReducedRateAnimations { get; set; } = false;
+ public bool HQMode { get; set; } = false;
}
}
|