実現したいこと
unityの教科書2020年、第8章において制限時間を管理するスクリプト製作途中に発生したエラーを治したいです。
発生している問題・エラー
エラーの表示(NullReferenceException: Object reference not set to an instance of an object GameDirector.Update () (at Assets/GameDirector.cs:24) )
該当のソースコード
c#
1コードの表示 2using System.Collections; 3using System.Collections.Generic; 4using UnityEngine; 5using UnityEngine.UI; // UIを使うときは忘れないように注意!! 6 7public class GameDirector : MonoBehaviour 8{ 9 GameObject timerText; 10 GameObject pointText; 11 float time = 60.0f; 12 13 14 15 void Start() 16 { 17 18 this.timerText = GameObject.Find("Time"); 19 20 } 21 22 void Update() 23 { 24 this.time -= Time.deltaTime; 25 this.timerText.GetComponent<Text>().text = this.time.ToString("F1"); 26 27 } 28} 29
試したこと
教科書のサンプルコードを貼り付けても同様のエラーが発生することを確認。
バージョン
Unity 2020,1.3f1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/05 08:10
2020/12/05 08:46
2020/12/05 08:47
2020/12/05 08:48
2020/12/05 08:51