|
@@ -3,10 +3,9 @@ Shader "Spine/Skeleton" {
|
|
_Cutoff ("Shadow alpha cutoff", Range(0,1)) = 0.1
|
|
_Cutoff ("Shadow alpha cutoff", Range(0,1)) = 0.1
|
|
[NoScaleOffset] _MainTex ("Texture to blend", 2D) = "black" {}
|
|
[NoScaleOffset] _MainTex ("Texture to blend", 2D) = "black" {}
|
|
}
|
|
}
|
|
- // 2 texture stage GPUs
|
|
|
|
|
|
+
|
|
SubShader {
|
|
SubShader {
|
|
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
|
|
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
|
|
- LOD 100
|
|
|
|
|
|
|
|
Fog { Mode Off }
|
|
Fog { Mode Off }
|
|
Cull Off
|
|
Cull Off
|
|
@@ -15,6 +14,7 @@ Shader "Spine/Skeleton" {
|
|
Lighting Off
|
|
Lighting Off
|
|
|
|
|
|
Pass {
|
|
Pass {
|
|
|
|
+ Fog { Mode Off }
|
|
ColorMaterial AmbientAndDiffuse
|
|
ColorMaterial AmbientAndDiffuse
|
|
SetTexture [_MainTex] {
|
|
SetTexture [_MainTex] {
|
|
Combine texture * primary
|
|
Combine texture * primary
|
|
@@ -25,9 +25,10 @@ Shader "Spine/Skeleton" {
|
|
Name "Caster"
|
|
Name "Caster"
|
|
Tags { "LightMode"="ShadowCaster" }
|
|
Tags { "LightMode"="ShadowCaster" }
|
|
Offset 1, 1
|
|
Offset 1, 1
|
|
-
|
|
|
|
ZWrite On
|
|
ZWrite On
|
|
ZTest LEqual
|
|
ZTest LEqual
|
|
|
|
+
|
|
|
|
+ Fog { Mode Off }
|
|
Cull Off
|
|
Cull Off
|
|
Lighting Off
|
|
Lighting Off
|
|
|
|
|
|
@@ -37,23 +38,21 @@ Shader "Spine/Skeleton" {
|
|
#pragma multi_compile_shadowcaster
|
|
#pragma multi_compile_shadowcaster
|
|
#pragma fragmentoption ARB_precision_hint_fastest
|
|
#pragma fragmentoption ARB_precision_hint_fastest
|
|
#include "UnityCG.cginc"
|
|
#include "UnityCG.cginc"
|
|
|
|
+ sampler2D _MainTex;
|
|
|
|
+ fixed _Cutoff;
|
|
|
|
+
|
|
struct v2f {
|
|
struct v2f {
|
|
V2F_SHADOW_CASTER;
|
|
V2F_SHADOW_CASTER;
|
|
float2 uv : TEXCOORD1;
|
|
float2 uv : TEXCOORD1;
|
|
};
|
|
};
|
|
|
|
|
|
- uniform float4 _MainTex_ST;
|
|
|
|
-
|
|
|
|
v2f vert (appdata_base v) {
|
|
v2f vert (appdata_base v) {
|
|
v2f o;
|
|
v2f o;
|
|
TRANSFER_SHADOW_CASTER(o)
|
|
TRANSFER_SHADOW_CASTER(o)
|
|
- o.uv = TRANSFORM_TEX(v.texcoord, _MainTex);
|
|
|
|
|
|
+ o.uv = v.texcoord;
|
|
return o;
|
|
return o;
|
|
}
|
|
}
|
|
|
|
|
|
- uniform sampler2D _MainTex;
|
|
|
|
- uniform fixed _Cutoff;
|
|
|
|
-
|
|
|
|
float4 frag (v2f i) : COLOR {
|
|
float4 frag (v2f i) : COLOR {
|
|
fixed4 texcol = tex2D(_MainTex, i.uv);
|
|
fixed4 texcol = tex2D(_MainTex, i.uv);
|
|
clip(texcol.a - _Cutoff);
|
|
clip(texcol.a - _Cutoff);
|
|
@@ -62,10 +61,9 @@ Shader "Spine/Skeleton" {
|
|
ENDCG
|
|
ENDCG
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- // 1 texture stage GPUs
|
|
|
|
|
|
+
|
|
SubShader {
|
|
SubShader {
|
|
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
|
|
Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
|
|
- LOD 100
|
|
|
|
|
|
|
|
Cull Off
|
|
Cull Off
|
|
ZWrite Off
|
|
ZWrite Off
|