Version: 2017.3
public TextAnchor anchor ;

説明

テキストのどの箇所がトランスフォームの位置になるか。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { GetComponent<TextMesh>().anchor = TextAnchor.MiddleCenter; } }