:github_url: hide
Inherits: Control
Node adding auto scrolling feature to its Range parent.
This node takes its parent Range and changes Range.value with constant speed until it reaches its destination. You can specify destination with scroll_to method.
| float | auto_min_value | inf_neg |
| float | speed | 10.0 |
| bool | is_scrolling( ) |
| void | scroll_to( value: float ) |
float auto_min_value = inf_neg
Defines minimum destination value. See scroll_to for more details.
float speed = 10.0
Defines speed of auto scrolling.
bool is_scrolling( )
Returns false if is inactive(already has reached its destination).
void scroll_to( value: float )
Sets destination to value and instantly starts auto scrolling process. If value is lesser than auto_min_value it is changed to match it.