Unity SpriteRender的 sheder中 如何解决默认渲染管线半透明渲染后重叠的问题?
目前效果
使用代码
Properties
{
_MainTex("Albedo (RGB)", 2D) = "white" {}
_Color("Color", Color) = (1,1,1,1)
}
SubShader
{
Tags
{ "Quene" = "Transparent"
"IgnoreProjector" = "True"
"RenderType" = "TransparentCutout"
}
Pass{
Tags{ "LightMode" = "ForwardBase" }
ZWrite Off
Cull Off
Blend SrcAlpha OneMinusSrcAlpha
CGPROGRAM
#include "UnityCG.cginc"
#pragma vertex vert_img
#pragma fragment frag
fixed4 _Color;
sampler2D _MainTex;
float4 _MainTex_ST;
fixed _AlphaScale;
fixed4 frag(v2f_img i) : COLOR
{
fixed4 color = tex2D(_MainTex, i.uv);
_Color.a *= color.a;
return (_Color);
}
ENDCG
}
}
想要效果 PS的
形成一个整体透明的
如何解决重叠的地方?