mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 13:53:38 +02:00
removed shadows quality
This commit is contained in:
parent
df2b428053
commit
7501b8818e
1 changed files with 1 additions and 4 deletions
|
@ -79,9 +79,6 @@ void setupPreferences() {
|
|||
wodSlider->setMin(0);
|
||||
wodSlider->setMax(2000);
|
||||
preferences->addPreference(wodSlider);
|
||||
auto getterSQ = []()->float { return 1.0; };
|
||||
auto setterSQ = [](float value) { };
|
||||
preferences->addPreference(new SliderPreference(GRAPHICS_QUALITY, "Shadow Quality", getterSQ, setterSQ));
|
||||
|
||||
auto getterShadow = []()->bool {
|
||||
bool ret = false;
|
||||
|
@ -104,7 +101,7 @@ void setupPreferences() {
|
|||
}
|
||||
}
|
||||
};
|
||||
preferences->addPreference(new CheckPreference(GRAPHICS_QUALITY, "Enable/disable shadows", getterShadow, setterShadow));
|
||||
preferences->addPreference(new CheckPreference(GRAPHICS_QUALITY, "Show Shadows", getterShadow, setterShadow));
|
||||
}
|
||||
|
||||
// UI
|
||||
|
|
Loading…
Reference in a new issue