TextMeshPro.anchorDampening

bool anchorDampening;

Description

Prevents the anchor position from being adjusted unless the change exceeds 40% of the width of the underline character.


using UnityEngine;
using System.Collections;
using TMPro;

public class ExampleClass : MonoBehaviour
{
    void Example()
    {
        GetComponent<TextMeshPro>().anchorDampening = true;
    }
}