Has anyone implemented a scrollview where the user can press the center of the scrollview and navigate like an iPhone screen? Does something like iTween have this functionality?
You mean drag and slide? You could easily implement this with iTween’s FloatUpdate. Just set markers for where your object should snap to and use FloatUpdate to get it there,
don’t see how the float update helps cause the scrollview is not touch aware (like the whole OnGUI basically - it only works cause the first touch results in mouse events as well).
what you need to do to use the scrollview with touching is adding code to update to track the touch movement and apply the same to the scroll views position vector
10-4 thanks.