Bump up the rate at which we increase detail.

This commit is contained in:
Andrzej Kapolka 2014-03-26 16:28:03 -07:00
parent 1bb7c6f3ed
commit 26da3bcefd

View file

@ -1208,7 +1208,7 @@ void Menu::autoAdjustLOD(float currentFPS) {
}
} else if (_fastFPSAverage.getAverage() > ADJUST_LOD_UP_FPS) {
// let the detail level creep slowly upwards
const float DISTANCE_DECREASE_RATE = 0.01f;
const float DISTANCE_DECREASE_RATE = 0.02f;
const float MINIMUM_DISTANCE_MULTIPLIER = 0.1f;
_avatarLODDistanceMultiplier = qMax(MINIMUM_DISTANCE_MULTIPLIER,
_avatarLODDistanceMultiplier - DISTANCE_DECREASE_RATE);