【unity3d】3D Text 使用方

发布时间:2019-09-16 07:39:01编辑:auto阅读(1738)

    1. 将ttf trueType 的字体导入unity 的 Project

    2.新建一个3D Text 的 GameObject ,将字体和font material 分别赋给 TextMesh 和Mesh Renderer.



    Hint:
    1. Dymamic fonts 只支持 mac 和 windows ,Unicode 一般的系统都支持。


    2. 在 ios系统上 font Texture 的大小不能超过 4096*4096 .


    3. 中文文字写在scripts中时,scripts 的编码用UTF-16.

    代码示例:

    TextMesh text = (TextMesh)GetComponent ("TextMesh");
    //改变字体颜色
    text.renderer.material.color = Color.black;
    //要显示的文字
    text.text = "Skill’s level is higher The skill is more\npowerful";

关键字