テキストのどの箇所がトランスフォームの位置になるか。
GetComponent.<TextMesh>().anchor = TextAnchor.MiddleCenter;
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { GetComponent<TextMesh>().anchor = TextAnchor.MiddleCenter; } }