当前位置:   article > 正文

Unity游戏输入系统(新版+旧版)_using system.collections; using system.collections

using system.collections; using system.collections.generic; using unityengin

使用新版还是旧版

在这里插入图片描述
在这里插入图片描述

旧版

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class c5 : MonoBehaviour
{

    void Start()
    {
        
    }

    void Update()
    {
        // 注意要在游戏中 点鼠标键盘进行测试

        // 鼠标
        // 0左键 1右键 2滚轮
        if (Input.GetMouseButtonDown(0))
        {
            Debug.Log("按下");
        }

        // 持续按下鼠标按键
        if (Input.GetMouseButton(0))
        {
            Debug.Log("持续鼠标");
        }
        // 松开鼠标
        if (Input.GetMouseButtonUp(0))
        {
            Debug.Log("松开鼠标");
        }

        // 键盘
        // 按下
        if (Input.GetKeyDown(KeyCode.A))
        {
            Debug.Log("按下A键");
        }
        // 持续
        // if (Input.GetKey(KeyCode.A))  // 写法1
        if (Input.GetKey("a"))           //写法2
        {
            Debug.Log("持续A键");
        }
        // 松开
        if (Input.GetKeyUp(KeyCode.A))
        {
            Debug.Log("松开A键");
        }

    }
}

  • 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
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55

新版

1、安装

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
安装新版后,在 [编辑-> 项目设置-> 玩家-> 其他设置-> 输入活动 ]处理中设置,新版或者两个。

2、设置

安装后,首先要挂新版的组件 “Playre Input”,使用搜索,输入Input。
在这里插入图片描述

3、新建 Input Aactions

在这里插入图片描述
在这里插入图片描述

4、设置键位

双击新建的文件,出现下面的菜单。
若想使用键盘:keyboard --> By Location of Key(Using US Layout) --> 选择按键。 在这里插入图片描述
在这里插入图片描述
若想使用鼠标:Mouse --> left Button(左键)
在这里插入图片描述
在这里插入图片描述

5、使用设置好的文件

在这里插入图片描述
还需要使用脚本

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// 导入新版 游戏操作系统
using UnityEngine.InputSystem;


public class c6 : MonoBehaviour
{
    // 声明
    PlayerInput input;


    void Start()
    {
        // 获取 新游戏操作系统的组件
        input = GetComponent<PlayerInput>();
        // 如需切换 另一套动作
        // input.SwitchCurrentActionMap("动作名字");
        // 开启该动作
        input.currentActionMap.Enable();
        // 获取 按下动作事件 (跳跃)
        input.actions["Jump"].performed += Jump;
        // 获取 松开动作事件  (跳跃)
        input.actions["Jump"].canceled += Jump;

        // 获取 按下动作事件 (攻击)
        input.actions["Attack"].performed += Attack;


    }

    /*
    private void Update()
    {
        // 获取Move的Vector2向量 (我设置了一个手柄的按键)
        Vector2 v = input.actions["Move"].ReadValue<Vector2>();
        Debug.Log("水平轴:" + v.x + ", 垂直轴:" + v.y);

    }
    */

    // 攻击函数
    private void Attack(InputAction.CallbackContext obj)
    {
        Debug.Log("按下攻击");
    }

    // 跳跃函数
    private void Jump(InputAction.CallbackContext obj)
    {
        if (obj.performed == true)
        {
            Debug.Log("按下跳跃");
        }
        if (obj.canceled == true)
        {
            Debug.Log("松开跳跃");
        }
    }


}

  • 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
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64

以上完成了,跳跃和攻击的绑定。
效果如下:
在这里插入图片描述

设定上下左右

将4个绑定按键
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
asd就不截图了,都一样。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// 导入新版 游戏操作系统
using UnityEngine.InputSystem;


public class c6 : MonoBehaviour
{
    // 声明
    PlayerInput input;


    void Start()
    {
        // 获取 新游戏操作系统的组件
        input = GetComponent<PlayerInput>();
        // 如需切换 另一套动作
        // input.SwitchCurrentActionMap("动作名字");
        // 开启该动作
        input.currentActionMap.Enable();
        // 获取 按下动作事件 (跳跃)
        input.actions["Jump"].performed += Jump;
        // 获取 松开动作事件  (跳跃)
        input.actions["Jump"].canceled += Jump;

        // 获取 按下动作事件 (攻击)
        input.actions["Attack"].performed += Attack;


    }


    private void Update()
    {
        // 获取Move的Vector2向量 (我设置了一个手柄的按键)
        Vector2 v = input.actions["Move"].ReadValue<Vector2>();
        Debug.Log("水平轴:" + v.x + ", 垂直轴:" + v.y);

    }

    // 攻击函数
    private void Attack(InputAction.CallbackContext obj)
    {
        Debug.Log("按下攻击");
    }

    // 跳跃函数
    private void Jump(InputAction.CallbackContext obj)
    {
        if (obj.performed == true)
        {
            Debug.Log("按下跳跃");
        }
        if (obj.canceled == true)
        {
            Debug.Log("松开跳跃");
        }
    }


}

  • 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
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63

按键后可观察到,两个轴的数值发生变化。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/602072
推荐阅读
相关标签
  

闽ICP备14008679号