質問編集履歴
1
スクリプトの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -9,3 +9,57 @@
|
|
9
9
|
みたいなことがしたいのですが、条件文のなかをどう書いたらいいかわかりません。
|
10
10
|
|
11
11
|
どなたか教えてくださいm(_ _)m
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
現状は↓のようなスクリプトでオブジェクトを動かしています
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
using System.Collections;
|
22
|
+
|
23
|
+
using System.Collections.Generic;
|
24
|
+
|
25
|
+
using UnityEngine;
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
public class Test : MonoBehaviour
|
30
|
+
|
31
|
+
{
|
32
|
+
|
33
|
+
public float speed;
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
// Update is called once per frame
|
40
|
+
|
41
|
+
void Update()
|
42
|
+
|
43
|
+
{
|
44
|
+
|
45
|
+
if(Input.GetKey(KeyCode.UpArrow))
|
46
|
+
|
47
|
+
{
|
48
|
+
|
49
|
+
transform.Translate(Vector3.forward * Time.deltaTime * speed);
|
50
|
+
|
51
|
+
}
|
52
|
+
|
53
|
+
if (Input.GetKey(KeyCode.DownArrow))
|
54
|
+
|
55
|
+
{
|
56
|
+
|
57
|
+
transform.Translate(-Vector3.forward * Time.deltaTime * speed);
|
58
|
+
|
59
|
+
}
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
}
|
64
|
+
|
65
|
+
}
|