Fixed auto scrolling to inspiration. Fixed show answer changes song list. Started working on some colors

This commit is contained in:
2023-09-02 14:05:41 +02:00
parent 3fabf45985
commit 1045bf2f9e
6 changed files with 99 additions and 28 deletions

View File

@@ -0,0 +1,16 @@
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
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass