版本: Unity 6 (6000.0)
语言英语
  • C#

Font.material

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读用户提出的每个建议,并在适当情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public Material material;

描述

用于字体显示的材质。

using UnityEngine;

public class Example : MonoBehaviour { // Swap 3D Text font color each second // Add this script to a text mesh object bool flag = false; float rate = 1f; TextMesh t;

void Update() { t = transform.GetComponent<TextMesh>(); if (Time.time > rate) { if (flag) { t.font.material.color = Color.yellow; flag = false; } else { t.font.material.color = Color.red; flag = true; } rate += 1; } t.text = "This is a 3D text changing colors!"; } }