Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


text

The text that is displayed.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.TextRenderingModule
public string text { 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 GetComponent<TextMesh>().text = "Hello World"; }}