syrtsevser

SweetFX MW3 Preset changes

Sep 17th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. // Here, tonemap and vibrance function quite similar: adjust color saturation
  2. // Sepia is the main brute that applies the color change
  3. // The rest of settings are set to default or turned off
  4.  
  5. // Effects
  6. #define USE_TONEMAP 1
  7. #define USE_VIBRANCE 1
  8. #define USE_SEPIA 1
  9.  
  10. // Tonemap
  11. #define Gamma 0.89 //Default: 1.000, [0.000 to 2.000]
  12. #define Saturation 0.1 //Default: 0.000, [-1.000 to 1.000]
  13.  
  14. // Vibrance
  15. #define Vibrance 0.8 //Default: 0.15, [-1.00 to 1.00]
  16.  
  17. // Sepia
  18. #define ColorTone float3(1.4, 1.05, 0.90) //Default: float3(1.40, 1.10, 0.90), [0.00 to 2.55] each
  19. #define GreyPower 0.11 //Default: 0.11, [0.00 to 1.00]
  20. #define SepiaPower 0.4 //Default: 0.58, [0.00 to 1.00]
Advertisement
Add Comment
Please, Sign In to add comment