how to convert int to text unity code example
Example: how to make int to text unity
private void Start()
{
text = GetComponent<Text>();
}
private void Update()
{
text.text = theInt.ToString();
}
private void Start()
{
text = GetComponent<Text>();
}
private void Update()
{
text.text = theInt.ToString();
}