系列文章目录
unity知识点
一、 前言
这篇文章就来实现UI的单击、双击、按压、拖动的不同状态判断。不定时更新Unity开发技巧,觉得有用记得一键三连哦。
二、鼠标的点击事件
2-1 鼠标输入的API
示例、
if (Input.GetMouseButtonDown (0)) //左键点击
{
}
if (Input.GetMouseButtonDown(1)) //右键点击
{
}
if (Input.GetMouseButtonDown(2)) //中键点击
{
}
判断单击和双击,主要是判断点击的次数。
三、UI的点击事件
3-1 UI点击事件API
UI的点击事件,需要继承UI的点击事件接口,重写点击事件即可。
UI点击事件接口:
public class Btn_OnClick : MonoBehaviour,IPointerClickHandler,IPointerDownHandler,IPointerUpHandler,IPointerExitHandler
3-1-1 所引用的命名空间
using UnityEngine.EventSystems;
3-2 代码如下
示例:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
using UnityEngine.UI;
using UnityEngine.EventSystems;
public class Btn_OnClick : MonoBehaviour,IPointerClickHandler,IPointerDownHandler,IPointerUpHandler,IPointerExitHandler
{
public void OnPointerClick(PointerEventData eventData) //鼠标点击UI
{
}
public void OnPointerDown(PointerEventData eventData) //鼠标按下UI
{
}
public void OnPointerExit(PointerEventData eventData) //鼠标离开UI
{
}
public void OnPointerUp(PointerEventData eventData)//鼠标点击UI后抬起
{
}
}
知道了API,下面就在这个基础上进行修改
四、使用步骤
4-1 实现UI的单价、双击、按压、拖动的不同状态判断
代码如下(示例):
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
using UnityEngine.UI;
using UnityEngine.EventSystems;
using UnityEngine.Events;
public class Btn_OnClick : MonoBehaviour,IPointerClickHandler,IPointerDownHandler,IPointerUpHandler,IPointerExitHandler
{
// 按压的持续时间
public float pressDurationTime = 1;
// 按压的响应次数
public bool responseOnceByPress = false;
// 双击的间隔时间
public float doubleClickIntervalTime = 0.2f;
// 拖动的间隔时间
public float dragIntervalTime = 0.2f;
// 拖动的鼠标间隔距离
public float dragIntervalPos = 0.01f;
public UnityEvent onDoubleClick;
public UnityEvent onPress;
public UnityEvent onClick;
public UnityEvent onDrag;
private bool isDown = false;
private bool isPress = false;
private bool isDrag = false;
private float downTime = 0;
private float clickIntervalTime = 0;
private int clickTimes = 0;
private Vector3 mousePosLast = Vector3.zero;//点击后的拖动位置
Btn_OnClick btn;
void Start()
{
btn = GetComponent<Btn_OnClick>();
btn.onClick.AddListener(Click);
btn.onPress.AddListener(Press);
btn.onDoubleClick.AddListener(DoubleClick);
btn.onDrag.AddListener(Drag);
}
void Click()
{
Debug.Log("单击");
}
void Press()
{
Debug.Log("按压");
}
void DoubleClick()
{
Debug.Log("双击");
}
void Drag()
{
Debug.Log("拖动");
}
void Update()
{
if (isDown)
{
if (responseOnceByPress && isPress)
{
return;
}
downTime += Time.deltaTime;
isDrag = Vector3.Distance(Input.mousePosition, mousePosLast) > dragIntervalPos;
if (downTime > pressDurationTime && !isDrag)
{
isPress = true;
onPress.Invoke();
}
if (downTime > dragIntervalTime && isDrag)
{
onDrag.Invoke();
}
}
if (clickTimes >= 1)
{
clickIntervalTime += Time.deltaTime;
if (clickIntervalTime >= doubleClickIntervalTime)
{
if (clickTimes >= 2)
{
onDoubleClick.Invoke();
}
else
{
onClick.Invoke();
}
clickTimes = 0;
clickIntervalTime = 0;
}
}
}
public void OnPointerClick(PointerEventData eventData)
{
if (!isPress)
clickTimes += 1;
else
isPress = false;
}
public void OnPointerDown(PointerEventData eventData)
{
isDown = true;
downTime = 0;
mousePosLast = Input.mousePosition;
}
public void OnPointerExit(PointerEventData eventData)
{
isDown = false;
isPress = false;
}
public void OnPointerUp(PointerEventData eventData)
{
isDown = false;
}
}
4-2 效果如下
4-3 录屏
五、Model的鼠标点击事件
5-1. 第一步新建一个模型Cube
5-2. 第二步新建一个脚本挂在Cube上面
5-3. OnMouseEnter当鼠标进入碰撞器的时候触发
5-4. OnMouseExit当鼠标离开碰撞盒的时候触发
5-5. OnMouseUpAsButton当鼠标在碰撞器上按下并松开的时候触发
5-6. 实现如下
完整代码示例如下:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 脚本挂到模型上,模型必须有碰撞盒
/// </summary>
public class Cube_OnClick : MonoBehaviour
{
/// <summary>
/// 当鼠标进入碰撞器的时候触发
/// </summary>
private void OnMouseEnter()
{
Debug.Log("进入了");
}
/// <summary>
///当鼠标离开碰撞盒的时候触发
/// </summary>
private void OnMouseExit()
{
Debug.Log("离开了");
}
/// <summary>
/// 当鼠标在碰撞器上按下并松开的时候触发
/// </summary>
private void OnMouseUpAsButton()
{
Debug.Log("点击了模型");
}
}
六、最终效果
UnityUI点击模型点击文章来源:https://www.toymoban.com/news/detail-809742.html
总结
如果觉得本篇文章有用别忘了点个关注,关注不迷路,持续分享更多Unity干货文章。
你的点赞就是对博主的支持,有问题记得评论留言文章来源地址https://www.toymoban.com/news/detail-809742.html
到了这里,关于Unity3D实现UI的单击、双击、拖动状态判断的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!