Answers for "How to write an int to a Text unity"

1

how to make int to text unity

private void Start()
    {
        text = GetComponent<Text>();
    }
    private void Update()
    {
        text.text = theInt.ToString();
    }
Posted by: Guest on May-27-2021

Code answers related to "How to write an int to a Text unity"

Browse Popular Code Answers by Language