void OnGUI()
{
if (Event.current.type == EventType.MouseDown)
{//判断当前手指是按下事件
touchFirst = Event.current.mousePosition;//记录开始按下的位置
}
if (Event.current.type == EventType.MouseUp)
{//判断当前手指是拖动事件
touchSecond = Event.current.mousePosition;//记录拖动的位置
if (touchSecond.x < touchFirst.x)
{
}
if (touchSecond.x > touchFirst.x)
{
}
}
}
}
unity 鼠标滑动响应事件
最新推荐文章于 2024-10-11 14:30:08 发布