質問編集履歴

1

ボールのコードを書きました。

2021/08/24 11:03

投稿

13ODmoq0h7sntYo
13ODmoq0h7sntYo

スコア3

test CHANGED
File without changes
test CHANGED
@@ -5,3 +5,57 @@
5
5
  使用しているunityは2020の3.5f1です。
6
6
 
7
7
  やり方を知っている方は教えていただけると幸いです。
8
+
9
+
10
+
11
+ 追記
12
+
13
+
14
+
15
+ 現在のボールのコードは
16
+
17
+ using System.Collections;
18
+
19
+ using System.Collections.Generic;
20
+
21
+ using UnityEngine;
22
+
23
+
24
+
25
+ public class ball : MonoBehaviour
26
+
27
+ {
28
+
29
+ public float speed = 1.0f;
30
+
31
+ private Rigidbody myRigid;
32
+
33
+
34
+
35
+ // Start is called before the first frame update
36
+
37
+ void Start()
38
+
39
+ {
40
+
41
+ myRigid = this.GetComponent<Rigidbody>();
42
+
43
+ myRigid.AddForce((transform.forward + transform.right) * speed, ForceMode.VelocityChange);
44
+
45
+ }
46
+
47
+
48
+
49
+ // Update is called once per frame
50
+
51
+ void Update()
52
+
53
+ {
54
+
55
+
56
+
57
+ }
58
+
59
+ }
60
+
61
+ です。