1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00

changed fog configuration to more sensible default values

This commit is contained in:
Marc Zinnschlag 2010-06-15 10:32:07 +02:00
parent 264bab806b
commit 847ef6df5d

View File

@ -142,8 +142,8 @@ void InteriorCellRender::configureFog()
Ogre::ColourValue color;
color.setAsRGBA (cell.cell->ambi.fog);
float high = 1000;
float low = 100;
float high = 10000;
float low = 8000;
scene.getMgr()->setFog (FOG_LINEAR, color, 0, low, high);
scene.getCamera()->setFarClipDistance (high + 10);