Answers for "textmeshpro ui text"

C#
3

unity textmeshpro

using UnityEngine;
using TMPro;

public class quizManager : MonoBehaviour
{
    public TextMeshProUGUI text;
    // Start is called before the first frame update
    void Start()
    {
        text.text = "example";
    }
}
Posted by: Guest on June-03-2021
1

textmeshpro text

using TMPro;

public TextMeshProUGUI text;
text.text = "Text updated. <sub>Subscript</sub> <sup>Superscript</sup> <b>Bold</b> <u>Underlined</u>";
Posted by: Guest on September-22-2021

C# Answers by Framework

Browse Popular Code Answers by Language