diff options
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -86,19 +86,18 @@ namespace WorldTuningTool return "Global (null)";
}
- /*
- public class StageExt
+ public struct PatchConfig
{
- Stage s {
- get
- {
- }
- set
- {
- }
- };
+ public bool TripleShadowResolution { get; set; } = false;
+ public bool FullResolutionVolumeBlur { get; set; } = false;
+ public bool HigherThanHighestVolumeRendering { get; set; } = false;
+ public bool DisableLODLimits { get; set; } = false;
+ public bool LargerFoliageSwayRange { get; set; } = false;
+ public bool DisableReducedRateAnimations { get; set; } = false;
+ public PatchConfig() {}
}
- */
+
+ public PatchConfig Patches { get; set; } = new PatchConfig();
public Dictionary<Stage, List<Plugin.Override>> Overrides { get; set; } = new Dictionary<Stage, List<Plugin.Override>>();
}
|