Version: 5.6 (switch to 2017.1b)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Font.material

Switch to Manual
public Material material;

Description

The material used for the font display.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private bool flag = false; private float rate = 1; private 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!"; } }