質問編集履歴
2
ミス
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,11 +4,15 @@
|
|
4
4
|
|
5
5
|
どうすればボールを発射することができるのでしょうか?
|
6
6
|
|
7
|
+
すみません。ちょっとしたスペルミスがあったため直しましたが、ただエラーが変わっただけでした。
|
8
|
+
|
9
|
+
|
10
|
+
|
7
11
|
|
8
12
|
|
9
13
|
エラーメッセージ
|
10
14
|
|
11
|
-
①
|
15
|
+
① An object reference is required to access non-static member `UnityEngine.Rigidbody.velocity'
|
12
16
|
|
13
17
|
②There is no 'Rigidbody2D' attached to the "GameManager" game object, but a script is trying to access it.
|
14
18
|
|
@@ -62,7 +66,7 @@
|
|
62
66
|
|
63
67
|
vel.y = INIT_SPEED * Mathf.Sin (INIT_DEGREE * Mathf.PI / 180f);
|
64
68
|
|
65
|
-
Rigidbody
|
69
|
+
Rigidbody.velocity = vel;
|
66
70
|
|
67
71
|
}
|
68
72
|
|
1
文の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
unity初心者です。
|
2
2
|
|
3
3
|
unityのC#を使いボールの発射させるためのプログラミングでの質問です。
|
4
|
+
|
5
|
+
どうすればボールを発射することができるのでしょうか?
|
4
6
|
|
5
7
|
|
6
8
|
|