123456789101112131415161718 |
- Shader "GUI/3D Text Shader - Cull Back" {
- Properties {
- _MainTex ("Font Texture", 2D) = "white" {}
- _Color ("Text Color", Color) = (1,1,1,1)
- }
-
- SubShader {
- Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" }
- Lighting Off Cull Back ZTest On ZWrite On Fog { Mode Off }
- Blend SrcAlpha OneMinusSrcAlpha
- Pass {
- Color [_Color]
- SetTexture [_MainTex] {
- combine primary, texture * primary
- }
- }
- }
- }
|