diff options
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 50 |
1 files changed, 2 insertions, 48 deletions
@@ -3,11 +3,11 @@ using SharpPluginLoader.Core.Configuration;
using SharpPluginLoader.Core.IO;
-namespace MHWNewCamera
+namespace NewCamera
{
internal class Config : IConfig
{
- public String Name => "MHWNewCamera";
+ public String Name => "NewCamera";
public String Version => "4.0";
public struct Settings
@@ -77,50 +77,6 @@ namespace MHWNewCamera public bool DisableFading { get; set; }
}
- public struct GraphicalTweaks
- {
- public GraphicalTweaks()
- {
- TripleShadowResolution = false;
- ShadowRangeOffset = 0.5f;
- ApplyShadowRange = false;
- ShadowRadiusOffset = -0.0001f;
- ApplyShadowRadius = false;
- HigherShadowDetailInHoarfrost = false;
- EnableHQMode = false;
- FullResolutionVolumeBlur = false;
- HigherThanHighestVolumeRendering = false;
- DisableLODLimits = false;
- FoliageLODBias = 3.0f;
- TerrainLODBias = 16.0f;
- FoliageLODFactor = 0.0f;
- TerrainLODFactor = 0.0f;
- SnowLODBias = 32.0f;
- ApplyLODFactors = false;
- LargerFoliageSwayRange = false;
- DisableReducedRateAnimations = false;
- }
-
- public bool TripleShadowResolution { get; set; }
- public float ShadowRangeOffset { get; set; }
- public bool ApplyShadowRange { get; set; }
- public float ShadowRadiusOffset { get; set; }
- public bool ApplyShadowRadius { get; set; }
- public bool HigherShadowDetailInHoarfrost { get; set; }
- public bool EnableHQMode { get; set; }
- public bool FullResolutionVolumeBlur { get; set; }
- public bool HigherThanHighestVolumeRendering { get; set; }
- public bool DisableLODLimits { get; set; }
- public float FoliageLODBias { get; set; }
- public float TerrainLODBias { get; set; }
- public float FoliageLODFactor { get; set; }
- public float TerrainLODFactor { get; set; }
- public float SnowLODBias { get; set; }
- public bool ApplyLODFactors { get; set; }
- public bool LargerFoliageSwayRange { get; set; }
- public bool DisableReducedRateAnimations { get; set; }
- }
-
public struct Position
{
public float FieldOfView { get; set; }
@@ -179,8 +135,6 @@ namespace MHWNewCamera public Dictionary<String, Preset> Presets { get; set; } = new Dictionary<String, Preset>();
public String Selected { get; set; } = "";
- public GraphicalTweaks Graphics { get; set; } = new GraphicalTweaks();
-
public Dictionary<String, Position> Positions { get; set; } = new Dictionary<String, Position>();
}
}
|