public TextAnchor anchor ;

Description

Точка, относительно которой текст будет рисоваться

using UnityEngine;

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