新的一个 双面CUT OFF 内外双色处理
Shader "Custom/Alpha/CutoffAlpha" {Properties {
_Color ("Main Color", Color) = (1,1,1,1)
_MainTex ("Albedo (RGB)", 2D) = "white" {}
_BackColor ("Back Main Color", Color) = (1,1,1,1)
}
SubShader {
Tags { "RenderType"="Opaque" }
LOD 400
Cull back
CGPROGRAM
#pragma surface surf Lambert alphatest:_Cutoff
sampler2D _MainTex;
fixed4 _Color;
struct Input {
float2 uv_MainTex;
};
void surf (Input IN, inout SurfaceOutput o) {
fixed4 c= tex2D(_MainTex, IN.uv_MainTex);
o.Albedo = c.rgb* _Color.rgb;
o.Alpha = c.a ;
}
ENDCG
Cull front
CGPROGRAM
#pragma surface surf Lambert alphatest:_Cutoff
sampler2D _MainTex;
fixed4 _BackColor;
struct Input {
float2 uv_MainTex;
};
void surf (Input IN, inout SurfaceOutput o) {
fixed4 c = tex2D(_MainTex, IN.uv_MainTex) * _BackColor;
o.Albedo = c.rgb;
o.Alpha = c.a;
}
ENDCG
}
FallBack "Diffuse"
目前都是免费提供给大家源码。。。。 貌似很有用的样子 貌似很有用的样子 看到这么好的帖如同回到初恋的年代 你们大神真会玩! 想要成大触,天天上元素! 谢楼主分享!!!! {:1_236:} {:1_230:} 首发必需微元素,荣耀加身装备酷! 资源甚好,发帖艰辛,且阅且珍惜!
楼主技术大神啊 6666666666666 看到这么好的帖如同回到初恋的年代 看到这么好的帖如同回到初恋的年代 看到这么好的帖如同回到初恋的年代 看到这么好的帖如同回到初恋的年代 看到这么好的帖如同回到初恋的年代 看到这么好的帖如同回到初恋的年代
页:
[1]
2