using UnityEngine; using System.Collections.Generic; //在scrollrect控件 下的content控件上添加 public class ScrollDragHelper : MonoBehaviour { public List<GameObject> ChildObjectList = new List<GameObject>
UGUI 当ScrollRect的Content带有按钮的时候,当拖拽位置在按钮上的时候,按钮的点击会遮挡scrllrect的拖动。这是使用这个脚本就能解决问题。在按钮的父节点上添加这个脚本。(或者可以将button换成toggle,toggle支持滑动) public class ScrollDrag : MonoBehaviour, IBeginDragHandler, IDragHa