Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


font

The Font used.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.TextRenderingModule
public Font font { get; set; }

Remarks

Additional Resources: text mesh component

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { // Set the text of the attached Text mesh Font newFont = new Font(); GetComponent<TextMesh>().font = newFont; }}