Точка, относительно которой текст будет рисоваться
GetComponent.<TextMesh>().anchor = TextAnchor.MiddleCenter;
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { GetComponent<TextMesh>().anchor = TextAnchor.MiddleCenter; } }