CountUp.csを作る。
using UnityEngine; using UnityEngine.UI; public class CountUp : MonoBehaviour { public float time = 0; void Update () { time += Time.deltaTime * 1f; int t = Mathf.FloorToInt (time); Text uiText = GetComponent<Text> (); uiText.text = "Time:" + t; } }
上記のような スクリプトを作ります。
補足
「カウントアップする数値を表示させるテキストコンポーネント」がアタッチされているオブジェクトにアタッチする。