Answers for "text convert in int and then in string 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 "text convert in int and then in string unity"

Browse Popular Code Answers by Language