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.