Gaussian blur post processing material

Just use the bilateral filter custom node in your material in the proper place and change this line:


float2 invSize = GetPostProcessInputSize(0).zw;

to something like this but you will have to figure out what this should be for your given situation:


float2 invSize = float2(0.01, 0.01);