質問編集履歴

2

ミス

2020/12/23 08:07

投稿

kassi
kassi

スコア3

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
- The type or namespace name `Rigidbody2d' could not be found. Are you missing an assembly reference?
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
- Rigidbody2.velocity = vel;
69
+ Rigidbody.velocity = vel;
66
70
 
67
71
  }
68
72
 

1

文の追加

2020/12/23 08:07

投稿

kassi
kassi

スコア3

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