Disable light blur on lowest lighting quality.
This commit is contained in:
parent
00fbffcddf
commit
900e912c28
1 changed files with 4 additions and 0 deletions
|
|
@ -191,18 +191,22 @@ namespace Content.Client.EscapeMenu.UI.Tabs
|
|||
case 0:
|
||||
_cfg.SetCVar(CVars.DisplayLightMapDivider, 8);
|
||||
_cfg.SetCVar(CVars.DisplaySoftShadows, false);
|
||||
_cfg.SetCVar(CVars.DisplayBlurLight, false);
|
||||
break;
|
||||
case 1:
|
||||
_cfg.SetCVar(CVars.DisplayLightMapDivider, 2);
|
||||
_cfg.SetCVar(CVars.DisplaySoftShadows, false);
|
||||
_cfg.SetCVar(CVars.DisplayBlurLight, true);
|
||||
break;
|
||||
case 2:
|
||||
_cfg.SetCVar(CVars.DisplayLightMapDivider, 2);
|
||||
_cfg.SetCVar(CVars.DisplaySoftShadows, true);
|
||||
_cfg.SetCVar(CVars.DisplayBlurLight, true);
|
||||
break;
|
||||
case 3:
|
||||
_cfg.SetCVar(CVars.DisplayLightMapDivider, 1);
|
||||
_cfg.SetCVar(CVars.DisplaySoftShadows, true);
|
||||
_cfg.SetCVar(CVars.DisplayBlurLight, true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue