zoukankan      html  css  js  c++  java
  • Unity中ScrollRect拖拽子物体无法拖拽

    当SrollRect下面的子物体添加了一些事件的时候,子物体的事件会阻挡ScrollRect的事件的监测,所有我们进行如下的脚本,手动调用ScrollRect事件。代码如下:


    /*******************
     *  Title:CW_FrameWark
     *  Author:CW
     *  ScriptName:  DragScrollRect
     *  Des:子物体有事件拖拽等事件监听的时候,ScrollRect可以生效
     ******************/
    using UnityEngine;
    using System.Collections;
    using UnityEngine.EventSystems;
    using UnityEngine.UI;

    namespace CW_FrameWark
    {
        public class DragScrollRect : MonoBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler
        {
            [Header("要拖动的ScrollRect")]
            public ScrollRect DragScorll;
            public void OnBeginDrag(PointerEventData eventData)
            {
               if(DragScorll!=null)
                {
                    DragScorll.OnBeginDrag(eventData);
                }
            }

            public void OnDrag(PointerEventData eventData)
            {
                if (DragScorll != null)
                {
                    DragScorll.OnDrag(eventData);
                }
            }

            public void OnEndDrag(PointerEventData eventData)
            {
                if (DragScorll != null)
                {
                    DragScorll.OnEndDrag(eventData);
                }
            }
        }
    }


  • 相关阅读:
    linux目录文件与系统启动(1)系统目录简介
    linux常用命令
    linux命令行
    关于Xshell6无法连接虚拟机centOS7的解决方案
    远程连接服务器和查错
    ip、端口、协议、网关、DNS
    linux分区
    linux系统补丁更新 yum命令
    VMWare网络适配器的三种模式
    springboot 配置springmvc?
  • 原文地址:https://www.cnblogs.com/weiqiangwaideshijie/p/7700163.html
Copyright © 2011-2022 走看看