Version: 2017.3
public TextAnchor anchor ;

설명

Which point of the text shares the position of the Transform.

using UnityEngine;
using System.Collections;

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