• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Mass Effect 2 dark shadows fix

Sycraft

Supreme [H]ardness
2FA
Joined
Nov 9, 2006
Messages
7,189
So if you've played the game for more than about 5 minutes, you've no doubt noticed it goes way overboard on the shadows. I mean HDR is nice, but these suckers crush to black all the time. One fix for this that I've seen a number of places is to turn off Depth of Field. In the GamerSettings.ini you can add DepthOfField=False and that'll turn it off. Ok, but that leaves the game looking pretty washed out. Not a real fix.

Well someone on the Bioware forums figured out that it has to do with one of the shaders they have. In the Mass Effect2\Engine\Shaders director there's a file UberPostProcessBlendPixelShader.usf which defines post processing, including the DoF effect. Changing that (it is plain text) can fix the shadow issue, but keep the effect over all.

You can download the fixed version I made, or you can change it yourself. If you want to change it find the line:

Code:
float3 x = max(0,InLinearColour-0.004);

and change it to

Code:
float3 x = max(0,InLinearColour);

You can also change the 0.004 to something closer to zero to make the effect less than removing it, or to something larger to make the black crush even worse.

Seems to do the trick nicely.
 
Any comparison screenshots of before & after? I never noticed anything funny about the shadows so I'm curious as to how it looks modified.
Posted via [H] Mobile Device
 
Back
Top