diff options
| author | yum <yum.food.vr@gmail.com> | 2024-08-29 17:44:58 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2024-08-29 17:44:58 -0700 |
| commit | c72069f69f451a4e369f01ac3dac3961740127b5 (patch) | |
| tree | a463513aa741c7d3a9e2ad2fc7b468c34a99feb4 /tooner_outline_pass.cginc | |
| parent | 6074470a44ec25a0fe4da6b96944a3997a69ffc5 (diff) | |
Add 4 more UV channels
Also make glitter & rim lighting glitter UV channel aware.
Diffstat (limited to 'tooner_outline_pass.cginc')
| -rw-r--r-- | tooner_outline_pass.cginc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tooner_outline_pass.cginc b/tooner_outline_pass.cginc index 5a0fbe3..f192cad 100644 --- a/tooner_outline_pass.cginc +++ b/tooner_outline_pass.cginc @@ -78,6 +78,10 @@ v2f vert(appdata v) o.uv1 = v.uv1; o.uv2 = v.uv2; o.uv3 = v.uv3; + o.uv4 = v.uv4; + o.uv5 = v.uv5; + o.uv6 = v.uv6; + o.uv7 = v.uv7; #if defined(LIGHTMAP_ON) o.lmuv = v.uv1 * unity_LightmapST.xy + unity_LightmapST.zw; #endif |
