unity textmeshpro

Code Example - 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";
    }
}
                    
                
 

textmesh pro text unity

                        
                                using TMPro;
//Declare variable of type text mesh pro text
TextMeshProUGUI TMPtext;
//Class variables
TMPText.text = "beans";
                            
                        
 

unity textmesh pro

                        
                                using UnityEngine;
using TMPro;

public class UiManager : MonoBehaviour
{
    [SerializeField]
    private TextMeshProUGUI TMPtext;
}
                            
                        
 

unity get textmesh pro component

                        
                                GetComponent<TMPro.TextMeshProUGUI>().text