diff options
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;
}
}
|