forked from przemyslawzaworski/Unity3D-CG-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfog.shader
37 lines (34 loc) · 895 Bytes
/
fog.shader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Shader "Fog" //Exponential Squared Fog
{
Properties
{
_MainTex ("Base (RGB)", 2D) = "white" {}
_FogColor ("Fog Color (RGB)", Color) = (0.5, 0.5, 0.5, 1.0)
_FogDensity ("Fog Density", Float) = 0.005
}
SubShader
{
Fog { Mode off }
Pass
{
CGPROGRAM
#pragma vertex VS
#pragma fragment PS
sampler2D _MainTex;
float4 _FogColor;
float _FogDensity;
void VS (inout float4 vertex:POSITION,inout float2 uv:TEXCOORD0,out float depth:TEXCOORD1)
{
vertex = UnityObjectToClipPos(vertex);
depth = vertex.w;
}
float4 PS (float4 vertex:POSITION,float2 uv:TEXCOORD0,float depth:TEXCOORD1) : SV_TARGET
{
float FogFactor = (_FogDensity / sqrt(log(2.0))) * depth;
FogFactor = saturate(exp2(-FogFactor*FogFactor));
return lerp(_FogColor, tex2D(_MainTex,uv), FogFactor);
}
ENDCG
}
}
}