質問編集履歴
1
試したことの追加です
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,3 +3,43 @@
|
|
3
3
|
自分の好きなタイミングで落とす方法がわかりません。
|
4
4
|
|
5
5
|
例えばスペースキーを押したら物を自由落下させ始めるようなことです。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
追伸
|
10
|
+
|
11
|
+
自分は以下のようにやろうとしました。がrigidbodyがenabledに対応してなくてできませんでした。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
using System.Collections;
|
16
|
+
|
17
|
+
using System.Collections.Generic;
|
18
|
+
|
19
|
+
using UnityEngine;
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
public class space : MonoBehaviour
|
24
|
+
|
25
|
+
{
|
26
|
+
|
27
|
+
// Update is called once per frame
|
28
|
+
|
29
|
+
void Update()
|
30
|
+
|
31
|
+
{
|
32
|
+
|
33
|
+
if (Input.GetKey(KeyCode.Space))
|
34
|
+
|
35
|
+
{
|
36
|
+
|
37
|
+
var RigidbodyTest = GetComponent<Rigidbody>();
|
38
|
+
|
39
|
+
RigidbodyTest.enabled = true;
|
40
|
+
|
41
|
+
}
|
42
|
+
|
43
|
+
}
|
44
|
+
|
45
|
+
}
|