Unity物体移动跳跃代码模板

Unity物体移动跳跃代码模板

🎮

平时用的时候稍微改改即可

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Player : MonoBehaviour
{
// 😄
void Start()
{

}

// 🤭
void Update()
{
if (Input.GetKeyDown("space"))
{
Debug.Log("space");

}
if (Input.GetKey("up") || Input.GetKey(KeyCode.W))
{
Debug.Log("↑");

}
if (Input.GetKey("down") || Input.GetKey(KeyCode.S))
{
Debug.Log("↓");

}
if (Input.GetKey("left") || Input.GetKey(KeyCode.A))
{
Debug.Log("←");

}
if (Input.GetKey("right") || Input.GetKey(KeyCode.D))
{
Debug.Log("→");

}
}
}

作者

发布于

2022-09-07

更新于

2022-11-30

许可协议