Description

Lines of text are aligned on the left.


using UnityEngine;
using System.Collections;
using TMPro;

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