Quantcast
Viewing all articles
Browse latest Browse all 98

Answer by shriya

HI,If you are working with new UI then in scripting you need to do following 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; } }

Viewing all articles
Browse latest Browse all 98

Trending Articles