Version: 2018.4
public TextAnchor anchor ;

説明

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

using UnityEngine;

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