Input.GetKey
每一帧键盘处于按下状态都会返回 true
定义
public static bool GetKey(string name);
参数名 | 类型 | 必要 | 说明 |
---|---|---|---|
name | string | 是 | 按键对应代码,详见 附录 #按键名称表 |
public static bool GetKey(KeyCode key);
参数名 | 类型 | 必要 | 说明 |
---|---|---|---|
key | KeyCode | 是 | 按键对应字符串名称,详见 附录 #按键代码表 |
每一帧键盘处于按下状态都会返回 true
public static bool GetKey(string name);
参数名 | 类型 | 必要 | 说明 |
---|---|---|---|
name | string | 是 | 按键对应代码,详见 附录 #按键名称表 |
public static bool GetKey(KeyCode key);
参数名 | 类型 | 必要 | 说明 |
---|---|---|---|
key | KeyCode | 是 | 按键对应字符串名称,详见 附录 #按键代码表 |