Answers for "changing the text in text mesh pro"

C#
12

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"      
    }
}
Posted by: Guest on August-12-2020
-1

how to change a textmesh pro text

TextMeshProUGUI TextPro;
     TextPro.text = "Some String";
Posted by: Guest on March-02-2020

Code answers related to "changing the text in text mesh pro"

C# Answers by Framework

Browse Popular Code Answers by Language