Bokeh DoF and Tilt Shift for ENBSeries
Skyrim » Visuals and graphics
Skyrim » Visuals and graphics
Added: 12/09/2012 - 07:19AM
Updated: 26/01/2013 - 08:36PM
- img 3 loading...
- img 4 loading...
- img 5 loading...
- img 6 loading...
- img 7 loading...
- img 8 loading...
- img 9 loading...
- img 10 loading...
- img 11 loading...
- img 12 loading...
- img 13 loading...
- img 14 loading...
- img 15 loading...
- img 16 loading...
- img 17 loading...
- img 18 loading...
- img 19 loading...
- img 20 loading...
- img 21 loading...
- img 22 loading...
- img 23 loading...
- img 24 loading...
- img 25 loading...
- img 26 loading...
- img 27 loading...
- img 28 loading...
- img 29 loading...
- img 30 loading...
- img 31 loading...
- img 32 loading...
- img 33 loading...
- img 34 loading...
- img 35 loading...
- img 36 loading...
- img 37 loading...
- img 38 loading...
- img 39 loading...
- img 40 loading...
- img 41 loading...
- img 42 loading...
Description
Last updated at 20:36, 26 Jan 2013 Uploaded at 7:19, 12 Sep 2012

---------------------
// Parametes :
#define NOT_BLURRING_SKY_MODE // not blurring the sky, enable this mode will use Gaussian blur only (DEPTH_OF_FIELD_QULITY 0) .
#define DEPTH_OF_FIELD_QULITY 3 // form 0 to 7, higher is more samples.
#define AUTO_FOCUS // enable auto focus
#define TILT_SHIFT // enable tilt shift
#define POLYGONAL_BOKEH // use polygonal shape bokeh or circular bokeh
#define POLYGON_NUM 5
// for auto focus
float2 FocusPoint=float2(0.5, 0.5); // the point you want to focus.
float FocusSampleRange=1.00; // sampling range of foucs, 0 is FocusPoint only
float NearBlurCurve=1.00; // control the blur from near to focal plane, higher is less blur
float FarBlurCurve=1.00; // control the blur from focal plane to far away, higher is less blur
float DepthClip=150.0; // the max distance you can see clear, over this distance will be blurred, no matter it's on focus or not.
// for static dof
float FocalPlaneDepth=0.50;
float FarBlurDepth=50.00; // the blur will increase from FocalPlaneDepth to FarBlurDepth
// for tilt shift
float TiltShiftAngle=30.0; // it will rotate the focal plane
// common
float BokehBias=2.00;
float BokehBiasCurve=0.75;
float BokehBrightnessThreshold=1.00; // any bright source that its brightness over BokehBrightnessThreshold
float BokehBrightnessMultipiler=2.00; // will increase its brightness by BokehBrightnessMultipiler.
float RadiusSacleMultipiler=4.00; // blur radius affects the size of bokeh
// noise grain
float NoiseAmount=0.35; // the max noise grain amount
float NoiseCurve=0.50; // lower the value, the noise grain will increase faster when out of foucs.
float ChromaticAberrationAmount=0.25; // the intensity of chromatic aberration
------------------------------------- update 0913 -------------------------------------
Improved performance.
Improved chromatic aberration.
------------------------------------- update 0915 -------------------------------------
Added tilt-shift feature
------------------------------------- update 0915v2 -------------------------------------
Added noise grain into blur
(the code is copied from offical effect.txt)
