質問編集履歴
2
見出しの変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# 実現したいこと
|
2
2
|
|
3
3
|
unityの教科書2020年、第8章において制限時間を管理するスクリプト製作途中に発生したエラーを治したいです。
|
4
4
|
|
1
間違えてエラーに関する記載なしで投稿してしまったため、追記です。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1 +1,83 @@
|
|
1
|
+
# 見出し 実現したいこと
|
2
|
+
|
1
3
|
unityの教科書2020年、第8章において制限時間を管理するスクリプト製作途中に発生したエラーを治したいです。
|
4
|
+
|
5
|
+
## 発生している問題・エラー
|
6
|
+
|
7
|
+
`エラーの表示(NullReferenceException: Object reference not set to an instance of an object
|
8
|
+
|
9
|
+
GameDirector.Update () (at Assets/GameDirector.cs:24)
|
10
|
+
|
11
|
+
)`
|
12
|
+
|
13
|
+
### 該当のソースコード
|
14
|
+
|
15
|
+
```c#
|
16
|
+
|
17
|
+
コードの表示
|
18
|
+
|
19
|
+
using System.Collections;
|
20
|
+
|
21
|
+
using System.Collections.Generic;
|
22
|
+
|
23
|
+
using UnityEngine;
|
24
|
+
|
25
|
+
using UnityEngine.UI; // UIを使うときは忘れないように注意!!
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
public class GameDirector : MonoBehaviour
|
30
|
+
|
31
|
+
{
|
32
|
+
|
33
|
+
GameObject timerText;
|
34
|
+
|
35
|
+
GameObject pointText;
|
36
|
+
|
37
|
+
float time = 60.0f;
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
void Start()
|
46
|
+
|
47
|
+
{
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
this.timerText = GameObject.Find("Time");
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
}
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
void Update()
|
60
|
+
|
61
|
+
{
|
62
|
+
|
63
|
+
this.time -= Time.deltaTime;
|
64
|
+
|
65
|
+
this.timerText.GetComponent<Text>().text = this.time.ToString("F1");
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
}
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
```
|
76
|
+
|
77
|
+
#### 試したこと
|
78
|
+
|
79
|
+
教科書のサンプルコードを貼り付けても同様のエラーが発生することを確認。
|
80
|
+
|
81
|
+
##### バージョン
|
82
|
+
|
83
|
+
Unity 2020,1.3f1
|