質問編集履歴
4
色変更できました
test
CHANGED
File without changes
|
test
CHANGED
@@ -9,8 +9,6 @@
|
|
9
9
|
|
10
10
|
|
11
11
|
**今回やりたいこと**
|
12
|
-
|
13
|
-
/ 敵の配列を赤くしたい ←出来ればこれもお願いしたいです。(自分でやってみたものの赤くなりません)
|
14
12
|
|
15
13
|
/ エラーを直したい
|
16
14
|
|
3
えい
test
CHANGED
File without changes
|
test
CHANGED
@@ -160,7 +160,7 @@
|
|
160
160
|
|
161
161
|
```
|
162
162
|
|
163
|
-
**エラー内容は言った通りですが。行は上のです。**
|
163
|
+
**エラー内容は言った通りですが。行は上のです。 print(playerPos); が null です。inv[cnt]は入っています**
|
164
164
|
|
165
165
|
NullReferenceException: Object reference not set to an instance of an object
|
166
166
|
|
2
return の文を追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -52,7 +52,7 @@
|
|
52
52
|
|
53
53
|
|
54
54
|
|
55
|
-
|
55
|
+
// return; return したら3秒後にInstantiateで出てきた瞬間エラー
|
56
56
|
|
57
57
|
}
|
58
58
|
|
1
era-NullReferenceException: Object reference not set to an instance of an object PlayerMove.Update (
test
CHANGED
File without changes
|
test
CHANGED
@@ -25,6 +25,16 @@
|
|
25
25
|
**敵の配列を動かしているスクリプト(一部抜粋)**
|
26
26
|
|
27
27
|
```c#
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
public GameObject[] inv = new GameObject[55] ; // 敵の配列
|
32
|
+
|
33
|
+
[System.NonSerialized]
|
34
|
+
|
35
|
+
public int cnt = 0; // 配列番号
|
36
|
+
|
37
|
+
|
28
38
|
|
29
39
|
void Update(){
|
30
40
|
|