Default to higher LOD framerate target on High graphics setting

This commit is contained in:
Karol Suprynowicz 2023-10-15 20:21:47 +02:00
parent f74725042e
commit 68f6e466bf
2 changed files with 2 additions and 2 deletions

View file

@ -99,7 +99,7 @@ void PerformanceManager::applyPerformancePreset(PerformanceManager::PerformanceP
RenderScriptingInterface::getInstance()->setShadowsEnabled(true);
qApp->getRefreshRateManager().setRefreshRateProfile(RefreshRateManager::RefreshRateProfile::REALTIME);
DependencyManager::get<LODManager>()->setWorldDetailQuality(WORLD_DETAIL_HIGH);
DependencyManager::get<LODManager>()->setWorldDetailQuality(WORLD_DETAIL_MEDIUM);
break;
case PerformancePreset::MID:

View file

@ -99,7 +99,7 @@ public slots:
/*@jsdoc
* Sets graphics performance to a preset.
* @function Performance.setPerformancePreset
* @param {Performance.PerformancePreset} performancePreset - The graphics performance preset to to use.
* @param {Performance.PerformancePreset} performancePreset - The graphics performance preset to use.
*/
void setPerformancePreset(PerformancePreset performancePreset);