回答編集履歴

4

追記に対する回答の追加

2021/03/28 09:19

投稿

coolwind0202
coolwind0202

スコア708

test CHANGED
@@ -47,3 +47,21 @@
47
47
 
48
48
 
49
49
  に変更してみてはどうですか?
50
+
51
+
52
+
53
+ (追記)
54
+
55
+ ```cs
56
+
57
+ GetComponent<Rigibody>().isKinematic = true;
58
+
59
+
60
+
61
+ GetComponent<Rigidbody>().isKinematic = true;
62
+
63
+ ```
64
+
65
+
66
+
67
+ RigidbodyがRigibodyになっています

3

fix

2021/03/28 09:19

投稿

coolwind0202
coolwind0202

スコア708

test CHANGED
@@ -40,7 +40,7 @@
40
40
 
41
41
 
42
42
 
43
- GetComponent<Rigibody>().AddForce(dir);
43
+ GetComponent<Rigidbody>().AddForce(dir);
44
44
 
45
45
  ```
46
46
 

2

追記しました

2021/03/28 04:13

投稿

coolwind0202
coolwind0202

スコア708

test CHANGED
@@ -1,3 +1,19 @@
1
+ ① NullReferenceException
2
+
3
+
4
+
5
+ Unityを再起動してみてください。
6
+
7
+
8
+
9
+ [参考:https://raspberly.hateblo.jp/entry/UIElementsError](https://raspberly.hateblo.jp/entry/UIElementsError)
10
+
11
+
12
+
13
+ ⑤ `A namespace cannot directly contain members such as fields or methods`
14
+
15
+
16
+
1
17
  `IgaguriGenerator` 内
2
18
 
3
19
 

1

脱字の指摘

2021/03/28 03:50

投稿

coolwind0202
coolwind0202

スコア708

test CHANGED
@@ -1,4 +1,4 @@
1
- `IgaguriGenerator` プログラムのクラス名が
1
+ `IgaguriGenerator` 内
2
2
 
3
3
 
4
4
 
@@ -6,15 +6,7 @@
6
6
 
7
7
  public class NewBehaviourScript : MonoBehaviour
8
8
 
9
- ```
9
+
10
-
11
-
12
-
13
- になっているので、
14
-
15
-
16
-
17
- ```cs
18
10
 
19
11
  public class IgaguriGenerator : MonoBehaviour
20
12
 
@@ -22,4 +14,20 @@
22
14
 
23
15
 
24
16
 
17
+ `IgaguriController` 内
18
+
19
+
20
+
21
+ ```cs
22
+
23
+ GetComponet<Rigidbody>().AddForce(dir);
24
+
25
+
26
+
27
+ GetComponent<Rigibody>().AddForce(dir);
28
+
29
+ ```
30
+
31
+
32
+
25
33
  に変更してみてはどうですか?