返回介绍

TextMesh.richText 富文本

发布于 2019-12-18 15:38:39 字数 1435 浏览 1054 评论 0 收藏 0

JavaScript => public var richText: bool;
C# =>public bool richText;

Description 描述

Enable HTML-style tags for Text Formatting Markup.
启用HTML样式标签标记文本格式。

Supported tags are:
支持的标签

<color=“htmlcolor”>colored text</color>, htmlcolor 表示html颜色值,像#ff0000或red 。
<b>bold text</b>粗体
<i>italic text</i>斜体
<size=20>sized text</size>文本大小
<material=1>渲染使用自定义的材质索引</material>
<quad material=1 size=20 x=0.1 y=0.1 width=0.5 height=0.5/>, to render a single quad using the given material and UVs, used for embedding images in text.使用给定的材质和UV渲染单个四边形,用来在文本中插入图像。

These are only supported for fonts set to use dynamic font rendering, except for the 'color', 'material' and 'quad' tags.
该文本仅支持设置动态字体,例如:'color','material',和'tags'。

JavaScript:

GetComponent.<TextMesh>().richText = true;

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Example() {
        GetComponent<TextMesh>().richText = true;
    }
}

textmesh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文