Answers for "int to text unity c#"

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

Browse Popular Code Answers by Language