//
// テキストの数字がループするスクリプト
//
using UnityEngine;
using UnityEngine.UI;
public class TestScript : MonoBehaviour
{
Text text; //uGUIテキストコンポーネント
int number = 0; //今の番号
int numberMax = 1000; //最大数
// Start is called before the first frame update
void Start()
{
//テキストコンポーネントを取得する
text = GetComponent();
}
// Update is called once per frame
void Update()
{
// 1ずつ加算する
number = number + 1;
// numberにnumberMaxで割った余りを代入する
number = number % numberMax;
text.text = number.ToString();
}
}