Rename cvars (#14001)

This commit is contained in:
Leon Friedrich
2023-02-13 05:51:21 +13:00
committed by GitHub
parent 5df6c307e1
commit 43f71aaee6

View File

@@ -221,17 +221,17 @@ namespace Content.Client.Options.UI.Tabs
private int GetConfigLightingQuality() private int GetConfigLightingQuality()
{ {
var val = _cfg.GetCVar(CVars.DisplayLightMapDivider); var val = _cfg.GetCVar(CVars.LightResolutionScale);
var soft = _cfg.GetCVar(CVars.DisplaySoftShadows); var soft = _cfg.GetCVar(CVars.LightSoftShadows);
if (val >= 8) if (val <= 0.125)
{ {
return 0; return 0;
} }
else if ((val >= 2) && !soft) else if ((val <= 0.5) && !soft)
{ {
return 1; return 1;
} }
else if (val >= 2) else if (val <= 0.5)
{ {
return 2; return 2;
} }
@@ -246,24 +246,24 @@ namespace Content.Client.Options.UI.Tabs
switch (value) switch (value)
{ {
case 0: case 0:
_cfg.SetCVar(CVars.DisplayLightMapDivider, 8); _cfg.SetCVar(CVars.LightResolutionScale, 0.125f);
_cfg.SetCVar(CVars.DisplaySoftShadows, false); _cfg.SetCVar(CVars.LightSoftShadows, false);
_cfg.SetCVar(CVars.DisplayBlurLight, false); _cfg.SetCVar(CVars.LightBlur, false);
break; break;
case 1: case 1:
_cfg.SetCVar(CVars.DisplayLightMapDivider, 2); _cfg.SetCVar(CVars.LightResolutionScale, 0.5f);
_cfg.SetCVar(CVars.DisplaySoftShadows, false); _cfg.SetCVar(CVars.LightSoftShadows, false);
_cfg.SetCVar(CVars.DisplayBlurLight, true); _cfg.SetCVar(CVars.LightBlur, true);
break; break;
case 2: case 2:
_cfg.SetCVar(CVars.DisplayLightMapDivider, 2); _cfg.SetCVar(CVars.LightResolutionScale, 0.5f);
_cfg.SetCVar(CVars.DisplaySoftShadows, true); _cfg.SetCVar(CVars.LightSoftShadows, true);
_cfg.SetCVar(CVars.DisplayBlurLight, true); _cfg.SetCVar(CVars.LightBlur, true);
break; break;
case 3: case 3:
_cfg.SetCVar(CVars.DisplayLightMapDivider, 1); _cfg.SetCVar(CVars.LightResolutionScale, 1);
_cfg.SetCVar(CVars.DisplaySoftShadows, true); _cfg.SetCVar(CVars.LightSoftShadows, true);
_cfg.SetCVar(CVars.DisplayBlurLight, true); _cfg.SetCVar(CVars.LightBlur, true);
break; break;
} }
} }