Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# display a variable to a text gameobject

 using UnityEngine.UI;  //its a must to access new UI in script
 public class YourClass : MonoBehaviour
 {
     public Text Score_UIText; // assign it from inspector
 void Start()
 {
    Score_UIText.text = yourscore_variable;
 }
 
 }

// I found it on the web IDK if it's work or not, Good luck :)
 
PREVIOUS NEXT
Tagged: #display #variable #text #gameobject
ADD COMMENT
Topic
Name
4+2 =