I need to control the slowing pace of UIScrollView when it is sliding with it's momentum on. It is possible to change the momentum amount from the inspector but it is not possible to change it's slowing pace.
I've located the piece of code where the slowing down is made on to the view;
"Vector3 offset = NGUIMath.SpringDampen(ref mMomentum, 9f, delta);" -> UIScrollView.cs
As can be seen the constant "9f" defines the slowing down speed. Is it possible for NGUI to add this slowing down speed as a variable in the inspector for UIScrollView? I don't want to change the source, since it will mess up new updates for NGUI.