The text that is displayed.
See Also: text mesh component.
// Set the text of the attached Text mesh GetComponent.<TextMesh>().text = "Hello World";
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { GetComponent<TextMesh>().text = "Hello World"; } }