diff options
| author | yum <yum.food.vr@gmail.com> | 2026-03-16 14:40:45 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2026-03-16 14:40:45 -0700 |
| commit | 921990168c22f5cccb77c5b608063d77adeaeab8 (patch) | |
| tree | dec31c279ae80c2b07afd68e2ccc7af136bc8fdf /3ner.cginc | |
| parent | e641d53cc28ca8b77c237aef89f4968c8114b614 (diff) | |
Fix tessellation shadows, and potential lighting NaNs
Diffstat (limited to '3ner.cginc')
| -rwxr-xr-x | 3ner.cginc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -230,7 +230,9 @@ v2f domain( UNITY_TRANSFER_INSTANCE_ID(patch[0], o); UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(o); #if defined(SHADOW_CASTER_PASS) - //TRANSFER_SHADOW_CASTER_NORMALOFFSET(o); + //TRANSFER_SHADOW_CASTER_NORMALOFFSET(o); +#else + TRANSFER_SHADOW(o); #endif return o; } |
