using UnityEngine; using UnityEngine.UI; using System.Collections; using System.Collections.Generic; public class ScrollRectPlus : ScrollRect { public void AddContentOffset(Vector2 offset) { m_ContentStartPosition += offset; } }