
Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »-Spooky-« (15. Juni 2009, 10:44)
Zitat
I own a PC for sharp clear graphics, not blur mess so..... Edit the fx_blur.phl file with notepad, search and adding these lines in RED. Adding only 1 line will remove about 1/2 the blur.
|
|
PHP-Quelltext |
1 2 3 4 5 6 7 8 |
MBLUR_FALLOFF_OFFSET;
velocityAmp = saturate( velocityAmp );
velocityAmp *= velocityAmp;
velocityAmp *= velocityAmp; //pow( velocityAmp, MBLUR_FALLOFF_DECAY );
velocityAmp = velocityAmp * MBLUR_SCALE;
velocityAmp = velocityAmp * MBLUR_SCALE; //this line added
velocityAmp = velocityAmp * MBLUR_SCALE; //this line added
velocityAmp *= vScreenPosition.y; //Less blur on top of screen (sky)
|