You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
423 B
19 lines
423 B
Shader "YuHonglei/3DTextShader" { |
|
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 Off ZWrite On Fog{ Mode Off } |
|
Blend SrcAlpha OneMinusSrcAlpha |
|
Pass{ |
|
Color[_Color] |
|
SetTexture[_MainTex]{ |
|
combine primary, texture * primary |
|
} |
|
} |
|
} |
|
}
|
|
|