We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3928cdc commit b951787Copy full SHA for b951787
src/UI/Panels/MiscPanel.cs
@@ -123,7 +123,7 @@ private void ToogleHighLods(bool areHighLodsOn){
123
if (lodBias == null){
124
Type qualitySettingsType = qualitySettings is Type type ? type : qualitySettings.GetActualType();
125
lodBias = qualitySettingsType.GetProperty("lodBias");
126
- _defaultLodBias = (float)lodBias.GetValue(null);
+ _defaultLodBias = (float)lodBias.GetValue(null, null);
127
}
128
lodBias.SetValue(null, areHighLodsOn ? 10000 : _defaultLodBias, null);
129
0 commit comments