summaryrefslogtreecommitdiff
path: root/Config.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Config.cs')
-rwxr-xr-xConfig.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/Config.cs b/Config.cs
index df575c4..4ff79e1 100755
--- a/Config.cs
+++ b/Config.cs
@@ -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;
}
}