Version: 2017.3
public string text ;

설명

The text that is displayed.

See Also: text mesh component.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { GetComponent<TextMesh>().text = "Hello World"; } }