summaryrefslogtreecommitdiffstats
path: root/fog.cginc
diff options
context:
space:
mode:
Diffstat (limited to 'fog.cginc')
-rw-r--r--fog.cginc4
1 files changed, 2 insertions, 2 deletions
diff --git a/fog.cginc b/fog.cginc
index ed99927..8dfd289 100644
--- a/fog.cginc
+++ b/fog.cginc
@@ -96,9 +96,9 @@ FogResult raymarched_fog(v2f i, FogParams p)
}
FogResult r;
- //r.color.rgb = _Raymarched_Fog_Color;
+ r.color.rgb = _Raymarched_Fog_Color;
//r.color.rgb = saturate(log(linearZ) / 5.0);
- r.color.rgb = float3(screen_uv, 0);
+ //r.color.rgb = float3(screen_uv, 0);
r.color.a = d;
r.depth = 0.0001; // Very small depth value to render in front
return r;