Advertisement
Guest User

Untitled

a guest
May 25th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5.  
  6. public class ScoreScript : MonoBehaviour
  7. {
  8. public static int scoreValue = 0;
  9. Text score;
  10. // Start is called before the first frame update
  11. void Start()
  12. {
  13. score = GetComponent<Text>();
  14. }
  15.  
  16. // Update is called once per frame
  17. void Update()
  18. {
  19. score.text = "Correct Diagnosis: " + scoreValue;
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement