码迷,mamicode.com
首页 > 其他好文 > 详细

Unity3D判断鼠标向右或向左滑动,响应不同的事件

时间:2014-08-15 19:25:49      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   cti   div   

private var first = Vector2.zero;   

private var second = Vector2.zero;   

function Update ()

{

}   

function OnGUI ()

{

    if(Event.current.type == EventType.MouseDown)

  {

    //记录鼠标按下的位置   

     first = Event.current.mousePosition ;

    }   

   if(Event.current.type == EventType.MouseDrag)

  {

    //记录鼠标拖动的位置   

    second = Event.current.mousePosition ;   

    if(second.x<first.x)

    {

      //拖动的位置的x坐标比按下的位置的x坐标小时,响应向左事件   

       print("left");   

     }   

     if(second.x>first.x)

    {

      //拖动的位置的x坐标比按下的位置的x坐标大时,响应向右事件   

       print("right");   

     }   

     first = second;   

  }   

}

 

Unity3D判断鼠标向右或向左滑动,响应不同的事件,布布扣,bubuko.com

Unity3D判断鼠标向右或向左滑动,响应不同的事件

标签:style   blog   color   os   io   ar   cti   div   

原文地址:http://www.cnblogs.com/123ing/p/3915323.html

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