TextMeshPro.verticalMapping

TextureMappingOptions verticalMapping;

Description

Controls how the face and outline textures are vertically mapped on a text object.


using UnityEngine;
using System.Collections;
using TMPro;

public class ExampleClass : MonoBehaviour
{
    void Example()
    {
        GetComponent<TextMeshPro>().verticalMapping = TextureMappingOptions.Paragraph;
    }
}