LoopScrollRectDragEventInherit.cs 209 B

123456789101112
  1. using UnityEngine;
  2. using UnityEngine.UI;
  3. public class LoopScrollRectDragEventInherit:MonoBehaviour
  4. {
  5. public ScrollRect sr;
  6. public ScrollRect GetInheritScrollRect()
  7. {
  8. return sr;
  9. }
  10. }