Added functionallity to some buttons. Hides answer from start. Updated song que list.

This commit is contained in:
2023-09-01 22:12:24 +02:00
parent c15afc3dc5
commit 3fabf45985
3 changed files with 57 additions and 12 deletions

18
ScrollContainer.gd Normal file
View File

@@ -0,0 +1,18 @@
extends ScrollContainer
var max = 0;
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
func _draw():
if max != self.get_v_scroll_bar().max_value:
max = self.get_v_scroll_bar().max_value
self.scroll_vertical = max
pass
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass