Remove many unused variables and unused setting files (#4607)

* Remove many unused variables and unused setting files

Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com>

* Remove a few more dead config vars

Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com>

* fix android test_ConfigureSettings_DefaultValues_SetsValues

Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com>
This commit is contained in:
Artur K
2021-10-13 00:06:15 +02:00
committed by GitHub
parent f34811c373
commit 80db67e90a
71 changed files with 21 additions and 2800 deletions
@@ -199,20 +199,6 @@ namespace ImGui
}
}
// Lod Min
static ICVar* eLodMinCVAR = gEnv->pConsole->GetCVar("e_LodMin");
if (eLodMinCVAR)
{
int minLodValue = eLodMinCVAR->GetIVal();
int dragIntVal = minLodValue;
ImGui::Text("e_LodMin: %d ( Force a lowest LOD level )", minLodValue);
ImGui::SliderInt("##LodMin", &dragIntVal, 0, 5);
if (dragIntVal != minLodValue)
{
eLodMinCVAR->Set(dragIntVal);
}
}
// Texel Density
static ICVar* eTexelDensityCVAR = gEnv->pConsole->GetCVar("e_texeldensity");
if (eTexelDensityCVAR)