unity 双面shader

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 } 
        }
}

}

 

posted @ 2016-09-08 16:52  暂不公开  阅读(721)  评论(0编辑  收藏  举报