diff options
| author | yum <yum.food.vr@gmail.com> | 2025-06-04 14:07:01 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-06-04 14:07:01 -0700 |
| commit | 22125db9ed9241cd6613b344a4fa7a99c72b3cfa (patch) | |
| tree | 7f5c419faf50250eac0b32dcae3aea07fd036d5d /fog.cginc | |
| parent | a13a00f2a28a2ea024dcc93eadd87ecf707f3ab4 (diff) | |
Fix c30 normals
Diffstat (limited to 'fog.cginc')
| -rw-r--r-- | fog.cginc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
