mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-23 09:54:19 +00:00
23 lines
590 B
C#
23 lines
590 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ScorePanel : MonoBehaviour
|
|
{
|
|
private GameController gameController;
|
|
private Text text;
|
|
|
|
private void Awake() {
|
|
gameController = GameObject.FindGameObjectWithTag("GameController").GetComponent<GameController>();
|
|
text = GetComponent<Text>();
|
|
}
|
|
|
|
private void Start() {
|
|
gameController.OnScoreChange += OnScoreChange;
|
|
}
|
|
|
|
private void OnScoreChange(int previous, int current) {
|
|
text.text = current.ToString();
|
|
}
|
|
}
|