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

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

时间:2015-04-05 23:12:05      阅读:292      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!