how to edit textmesh pro text with unity c# code example
Example 1: how to edit text mesh pro text
using UnityEngine;
using System.Collections;
using TMPro;
public class ExampleClass : MonoBehaviour
{
public TextMeshProUGUI textDisplay;
void Example()
{
textDisplay.text = "Example Text"
}
}
Example 2: unity get textmesh pro component
GetComponent<TMPro.TextMeshProUGUI>().text