TextMeshPro.enableKerning

bool enableKerning;

Description

Enables or disables kerning.


using UnityEngine;
using System.Collections;
using TMPro;

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