Version: 2017.1
public TextAlignment alignment ;

설명

How lines of text are aligned (Left, Right, Center).

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { GetComponent<TextMesh>().alignment = TextAlignment.Left; } }