标签:
Shader "Custom/DoubleFace" {
Properties {
_Color ("Main Color", Color) = (1,1,1,1)
_MainTex ("Base (RGB) Trans (A)", 2D) = "" {}
}
SubShader {
Pass {
Cull Off
Blend SrcAlpha OneMinusSrcAlpha
Alphatest Greater 0
SetTexture [_MainTex] {
constantColor [_Color]
combine texture * constant }
}
}
}
标签:
原文地址:http://www.cnblogs.com/GouBin/p/5853667.html