summaryrefslogtreecommitdiff
path: root/Config.cs
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2026-04-02 21:16:55 -0400
committerAndrew Opalach <andrew@akon.city> 2026-04-02 21:58:31 -0400
commit9bebe7aa2ea80df948338e8b8cee256f7b6454d9 (patch)
treeab2df8cc6f6978c8edfc2786f0ffcd1de85502f2 /Config.cs
parentc95b23e637fa1545a3ab2de0ec9b73d67332b4ad (diff)
downloadNewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.tar.gz
NewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.tar.bz2
NewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.zip
Gut graphics stuff, misc additions
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Config.cs')
-rwxr-xr-xConfig.cs50
1 files changed, 2 insertions, 48 deletions
diff --git a/Config.cs b/Config.cs
index 8570644..1da81b5 100755
--- a/Config.cs
+++ b/Config.cs
@@ -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>();
}
}