diff options
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -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;
}
}
|