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

unity3D中的Input按键方法检测

时间:2017-02-03 16:50:13      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:void   unit   bug   nbsp   记录   date   判断   blog   update   

一,按键的按下抬起等识别方法

 

void Update ()
    {
        int key1 = 0;
       int key2 = 0;
        if (Input.GetKeyDown (KeyCode.A))
        {
            Debug.Log("A按下一次");
        }    
        if (Input.GetKey (KeyCode.A))
        {
            //记录按下的帧数,判断特定按键按下不抬起
            key1++;
            Debug.Log("A连按:" + key1+"");
        }
        if (Input.GetKeyUp (KeyCode.A))
        {
            //抬起后清空帧数
            key1=0;
            Debug.Log("A按键抬起");
        }
        if(Input.anyKeyDown)
        {
            //清空按下帧数,任意键按下识别方法,返回true
            key2=0;
            Debug.Log("任意键被按下");
        }
        if(Input.anyKey)
        {
           //若保持任意键按下,这key2会一直执行++,知道按键被抬起
            key2++;
            Debug.Log("任意键被长按"+key2+"");
        }
    } 

 

unity3D中的Input按键方法检测

标签:void   unit   bug   nbsp   记录   date   判断   blog   update   

原文地址:http://www.cnblogs.com/May-day/p/6362819.html

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