3D Text

作者:追风剑情 发布于:2016-3-29 10:14 分类:Unity3d

22222.png

 

33333.png

111111.png

 

解决3D Text总显示在最上面问题

转载 https://blog.csdn.net/sarsscofy/article/details/85090002

一、导入字体文件

1111.png

Font Size改大点字迹会更清晰。

二、创建3DTextShader和3DTextMaterial


Shader "Custom/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
			}
		}
	}
}


222222.png

三、测试

444444.png

3333.png


标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号