Water fog fix

This commit is contained in:
scrawl 2013-02-23 09:02:05 +01:00
parent 01102f9c73
commit 7046e7ae3d

View file

@ -295,7 +295,7 @@
}
else
{
float fogValue = shSaturate((length(cameraPos.xyz-position.xyz) - fogParams.y) * fogParams.w);
float fogValue = shSaturate((depthPassthrough - fogParams.y) * fogParams.w);
shOutputColour(0).xyz = shLerp (shOutputColour(0).xyz, fogColor, fogValue);
}