public TextAnchor anchor ;

Descripción

Qué punto del texto comparte la posición del Transform.

using UnityEngine;

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