Any way to set a ScrollContainer's vertical scroll maxed at all times?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By j5E01

What is the best way to keep a ScrollContainer’s vertical scroll all the way maxed at all times?

The only way I could get it to work was using :

`func _process(delta):

	$"World/ScrollContainer".set_v_scroll(9999)`

Adding the set_v_scroll(int) any other way doesn’t work… and I’m afraid using this is going to hog up resources…

Also, this now blocks users from being able to scroll at all.

I have also tried working with Grow Direction inside the inspector, and it seems to make zero difference on what option I choose.

j5E01 | 2019-12-01 01:06