1
Fork 0
mirror of https://github.com/Steffo99/gravity-fusion.git synced 2024-11-22 08:24:17 +00:00
gravity-fusion/Assets/Components/TextFromBlackHoleMass.cs

23 lines
554 B
C#
Raw Normal View History

2019-10-05 21:50:43 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class TextFromBlackHoleMass : MonoBehaviour
{
protected Text text;
2019-10-07 11:44:26 +00:00
protected GameController gameController;
2019-10-05 21:50:43 +00:00
protected void Awake() {
text = GetComponent<Text>();
2019-10-07 11:44:26 +00:00
gameController = GameObject.Find("GameController").GetComponent<GameController>();
2019-10-05 21:50:43 +00:00
}
protected void Update()
{
2019-10-07 15:50:34 +00:00
if(gameController.blackHole == null) return;
2019-10-07 11:44:26 +00:00
text.text = gameController.blackHole.Mass.ToString("0");
2019-10-05 21:50:43 +00:00
}
}