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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user