Answers for "unity how to make text"

C#
1

get text unity

numericalScore.GetComponent<UnityEngine.UI.Text>().text = "Score : " + scoreManager.score;
Posted by: Guest on July-18-2021
0

unity gui text

public Text myText;

void Start()
{
    myText.text = "This is my text";
}
Posted by: Guest on April-03-2022

C# Answers by Framework

Browse Popular Code Answers by Language