change text mesh pro text from script 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: how to change textMesh Pro unity
public TextMeshPro TextMeshProObject;
TextMeshProObject = GetComponent<TextMeshPro>();
TextMeshProObject.text = "Hello";
TextMeshProUGUI TextMeshProLable = YourGameObject.GetComponent<TextMeshProUGUI>();
TextMeshProLable.text = "Your Text"