I’m trying to implement the functionality of scrollTo() with a scrollView.
scrollView:scrollTo( "right", { time = 3000, onComplete = function() end })
What bothers me, though, is the (although very nice) non-constant speed of scrolling. It accelerates nice and slowly, eventually reaches the maximum constant speed and repeats the same process at the end decelerating - it looks similar to quadIn and quadOut.
However, I would like to have it jump to constant speed and stop abruptly when reaching the ending position. Is there a way to implement it this way?
Or at least, can somebody tell me the parameters and the form of velocity graph and I’ll do a work around myself? I haven’t found anything in the Docs on this matter.
Should I ask for a feature / file a bug?