I tried TweenPosition from script but when it gets called, the scroll view gets shifted, but the next cell doesn't show up in the grid (it's blank).
scrollViewTween
.from = new Vector3
(theScrollView
.transform.localPosition.x,
0,
0) ;scrollViewTween
.to = new Vector3
(theScrollView
.transform.localPosition.x - cellWidth,
0,
0) ;scrollViewTween.PlayForward();
(This doesn't work properly)
How can I drag the scroll view to the next cell from the script?