Hello, I am developing mobile game with UI toolkit, But I am experiencing some problems with the Scrollview. I have level select screen based on vertical Scrollview which contains all game sets obtained in the game. Every set contain a classic level progress tree with buttons. So player is scrolling to wanted game set and after that is opening level by clicking to corresponding button.
My problem is, that when is scroll view decelerating and I am clicking to button, it will only stops scrolling/decelerating and don´t trigger button. I know, that in high speed it is wanted behaviour, but it is happening too in very low speed. In some cases I am not seeing any movement and still click to button is not registered and probably only deceleration is stopped… so for registering button I need to click twice or wait some time… Is there any possibility to remove this very low speed deceleration on end (I want to keep deceleration but remove part which is harder to detect by eye)? I want to remove, that player must to click twice on button.
Another thing is, that when is Touch scroll type set to Clamped and I will make big scroll, which hit one end side of scroll view, it will visually instanly stop scrolling, but I have feeling, that internaly it is still thinking, that decelerating is underway, because if I will “shortly” click to button, it will again not trigger anything and I need to click twice…or wait little longer and after that is click registered.
I am usingTouch scroll type Elastic so second point about clamped type is not important for me.
Again thank you very much for your help!