码迷,mamicode.com
首页 > 编程语言 > 详细

Unity3D获取当前键盘按键

时间:2015-11-10 17:45:40      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:

获取当前键盘按键,代码如下:

using UnityEngine;
using System.Collections;

public class GetCurrentKey : MonoBehaviour {

    KeyCode currentKey;
    void Start ()
    {
        currentKey = KeyCode.Space;
    }
    
    void OnGUI()
    {
        if (Input.anyKeyDown)
        {
            Event e = Event.current;
            if (e.isKey)
            {
                currentKey = e.keyCode;
                Debug.Log("Current Key is : " + currentKey.ToString());
            }
        }
    }
}

 

Unity3D获取当前键盘按键

标签:

原文地址:http://www.cnblogs.com/JMcc020/p/4953580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!