博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
EventTrigger
阅读量:6676 次
发布时间:2019-06-25

本文共 1890 字,大约阅读时间需要 6 分钟。

01.添加事件

using UnityEngine;using UnityEngine.EventSystems;[RequireComponent(typeof(EventTrigger))]public class ImageDrag : MonoBehaviour {
public void Click() {
Debug.Log("Click"); }}

在这里插入图片描述02.、

using System.Collections.Generic;using UnityEngine;using UnityEngine.EventSystems;using UnityEngine.UI;public class Test5 : MonoBehaviour {
private EventTrigger eventTrigger; void Awake() {
eventTrigger = this.GetComponent
(); } void Start() {
eventTrigger.triggers = new List
(); EventTrigger.Entry entry = new EventTrigger.Entry(); entry.eventID = EventTriggerType.PointerClick; entry.callback = new EventTrigger.TriggerEvent(); entry.callback.AddListener((data) => {
Click(); }); } private void Click() {
Debug.Log("Click"); }}
using UnityEngine;using UnityEngine.EventSystems;public class DragTest4 : MonoBehaviour ,IBeginDragHandler,IDragHandler,IEndDragHandler,IInitializePotentialDragHandler,IDropHandler{
public RectTransform canRectTransform; public void OnBeginDrag(PointerEventData eventData) {
Debug.Log("beginDrag"); } //UI跟随鼠标 public void OnDrag(PointerEventData eventData) {
Debug.Log("Drag"); var rec = this.GetComponent
(); Vector3 pos = Vector3.zero; RectTransformUtility.ScreenPointToWorldPointInRectangle(rec, eventData.position, eventData.enterEventCamera, out pos); rec.position = pos; } public void OnEndDrag(PointerEventData eventData) {
Debug.Log("EndDrag"); } public void OnInitializePotentialDrag(PointerEventData eventData) {
Debug.Log("OnInitializePotential"); } public void OnDrop(PointerEventData eventData) {
Debug.Log("Drop"); }}

转载地址:http://vurxo.baihongyu.com/

你可能感兴趣的文章
功能教室预约系统开源下载(c#源码)
查看>>
杨百旺短线技法
查看>>
Linux Mysql Related
查看>>
Impala 和 Hive 之间 SQL 区别(翻译)
查看>>
Exception练习-Exception的正确使用
查看>>
关于rms,打开文档的时候提示您没有权限打开文档,因为您的权限已过期
查看>>
如何在eclipse里关联查看android源码
查看>>
Scala 深入浅出实战经典 第80讲:List的泛型分析以及::类和Nil对象
查看>>
10.IPSec×××高可用性技术-链路备份
查看>>
我的友情链接
查看>>
destoon 读取当前栏目名称
查看>>
HTC推出革新的HTC旗舰级Android智能手机
查看>>
switch&router-四层模式
查看>>
新博安卓培训的第一天
查看>>
游戏中常用到的碰撞检测帮助类
查看>>
访问默认共享
查看>>
01262015要看的blog——oracle tuning
查看>>
[信息图]电子商务营销的6大步骤
查看>>
Hibernate注释大全收藏
查看>>
通过openfiler模拟存储
查看>>