首页 > 编程语言 > 详细

Unity 代码检测单击,双击,拖放

时间:2015-04-05 23:11:31      阅读:476      评论:0      收藏:0      [点我收藏+]

今天小伙伴问我如何自己写一段代码检测 单击 双击 和 拖放.于是就写了这段代码O(∩_∩)O~

 

技术分享

代码如下:

using UnityEngine;
using System.Collections;

public class Test2 : MonoBehaviour {

    public float oneTime;           //检测双击的有效时间
    private int downCount;          //判断是单击还是双击
    private bool currentCheck;      //当前正在检测
    private bool isTuoDong;         //是否拖动
    private bool startTuoDong;      //开始拖动
    void Update () {


        if(Input.GetKeyDown(KeyCode.A))
        {
            downCount++;
            isTuoDong = true;
            if (currentCheck == false) 
            {
                StartCoroutine(CheckDown());
            }
        }

        if (Input.GetKeyUp(KeyCode.A)) 
        {
            isTuoDong = false;
            startTuoDong = false;
        }

        if (startTuoDong) 
        {
            Debug.Log("正在拖动");   
        }
    }

    IEnumerator CheckDown() 
    {
        currentCheck = true;
        yield return new WaitForSeconds(oneTime);

        if (isTuoDong) 
        {
            Debug.Log("拖动");
            startTuoDong = true;

        }else if (downCount >= 2)         //说明是双击
        {
            Debug.Log("双击");
        }
        else if (downCount == 1)    //单击
        {
            Debug.Log("单击");
        }

        downCount = 0;
        currentCheck = false;

    }

}

Unity 代码检测单击,双击,拖放

原文:http://www.cnblogs.com/plateFace/p/4394830.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!