mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-07 16:30:06 +01:00
11 lines
183 B
GDScript
11 lines
183 B
GDScript
extends ScrollContainer
|
|
|
|
|
|
@export var auto_scroll: bool = false
|
|
|
|
|
|
func _process(_delta):
|
|
if auto_scroll:
|
|
var scrollbar = get_v_scroll_bar()
|
|
scrollbar.value = scrollbar.max_value
|