View Single Post
  #5  
Old 10-25-2012, 03:58 PM
MadTommy MadTommy is offline
Approved Member
 
Join Date: Jan 2011
Posts: 493
Default

Quote:
Originally Posted by Continu0 View Post
actual Version? Because I´ve never seen the sun shining trough the clouds like this...
Up to date steam version, using that FXAA injector plugin.

these are my settings.. not sure if that is causing that effect.. i had also never seen it before.. hence why i took the screenshots
Code:
USE_TONEMAP
#define USE_ANTI_ALIASING
//#define USE_PRE_SHARPEN
//#define USE_BLOOM
#define USE_TECHNICOLOR
#define USE_TONEMAP
//#define USE_SEPIA
//#define USE_VIGNETTE
//#define USE_POST_SHARPEN
//#define USE_FINAL_LIMITER
/*------------------------------------------------------------------------------
						FXAA SHADER
------------------------------------------------------------------------------*/
// Set values to calculate the amount of Anti Aliasing applied
float fxaaQualitySubpix = 0.95;  // Default: 0.75 Raise to increase amount of blur
float fxaaQualityEdgeThreshold = 0.033; // Lower the value for more smoothing
float fxaaQualityEdgeThresholdMin = 0.0033; // Lower the value for more smoothing
/*------------------------------------------------------------------------------
						TECHNICOLOR
------------------------------------------------------------------------------*/
#define TechniAmount 0.40 // 1.00 = Max
#define TechniPower 6.0 // lower values = whitening
// lower values = stronger channel
#define redNegativeAmount 0.65 // 1.00 = Max
#define greenNegativeAmount 0.75 // 1.00 = Max
#define blueNegativeAmount 0.8 // 1.00 = Max
/*------------------------------------------------------------------------------
						TONEMAP
------------------------------------------------------------------------------*/
#define Gamma 1.20
#define Exposure 0.00
#define Saturation -0.1 // use negative values for less saturation. 
#define BlueShift 0.1 // Higher = more blue in image.
#define Bleach 0.10 // Bleach bypass, higher = stronger effect
#define Defog 0.01 // Strength of Lens Colors.
#define FogColor float4(0.08, 0.28, 0.10, 3.0) //Lens-style color filters for Blue, Red, Yellow, White.

Last edited by MadTommy; 10-25-2012 at 04:02 PM.
Reply With Quote