Version: 5.6
public string text ;

説明

テキストの表示。

関連項目: text mesh component.

using UnityEngine;
using System.Collections;

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