Version: 2021.2

Input.GetButtonUp

切换到手册
public static bool GetButtonUp (string buttonName);

描述

在用户释放由 buttonName 标识的虚拟按钮的第一帧返回 true。

Call this function from the Update function, since the state gets reset each frame. It will not return true until the user has pressed the button and released it again.

仅在实现武器开火事件等操作时,才使用该函数。
对于任意类型的移动行为,请使用 Input.GetAxis

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GameObject projectile; void Update() { if (Input.GetButtonUp("Fire1")) Instantiate(projectile, transform.position, transform.rotation); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961