diff options
| author | 2026-01-17 16:23:39 -0500 | |
|---|---|---|
| committer | 2026-01-17 16:23:39 -0500 | |
| commit | 0931cc305c8165ec2d4f22448f29f37a4fb33bd0 (patch) | |
| tree | 32c835d18abfcb51ef724ca90efcabb645a1bd70 /Config.cs | |
| parent | 186a83ded716920f89ac97d7e81511bdb665fb9b (diff) | |
| download | NewCamera-0931cc305c8165ec2d4f22448f29f37a4fb33bd0.tar.gz NewCamera-0931cc305c8165ec2d4f22448f29f37a4fb33bd0.tar.bz2 NewCamera-0931cc305c8165ec2d4f22448f29f37a4fb33bd0.zip | |
Cleanup and some test stuff
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -112,9 +112,9 @@ namespace MHWNewCamera public Dictionary<String, SavedPosition> Positions { get; set; } = new Dictionary<String, SavedPosition>();
public bool TripleShadowResolution { get; set; } = false;
- public float ShadowRangeOffset { get; set; } = 0.5f;
+ public float ShadowRangeOffset { get; set; } = 0.7f;
public bool ApplyShadowRange { get; set; } = false;
- public float ShadowRadiusOffset { get; set; } = 0.0005f;
+ public float ShadowRadiusOffset { get; set; } = -0.0001f;
public bool ApplyShadowRadius { get; set; } = false;
public bool HigherShadowDetailInHoarfrost { get; set; } = false;
public bool SSAOAdjustments { get; set; } = false;
@@ -129,5 +129,8 @@ namespace MHWNewCamera public bool ApplyLODFactors { get; set; } = false;
public bool LargerFoliageSwayRange { get; set; } = false;
public bool DisableReducedRateAnimations { get; set; } = false;
+ public bool DisableVolumetricDownsample { get; set; } = false;
+
+ public bool OverrideViewMode { get; set; } = false;
}
}
|