#20 #24 Winnersong can be stopped. Inspirationlist speed can be changed. Some other small fixes
All checks were successful
Build / build (push) Successful in 1m36s

This commit is contained in:
2025-12-27 14:05:56 +01:00
parent 2a32cc34ef
commit b4ba96cf63
6 changed files with 84 additions and 19 deletions

View File

@@ -4,8 +4,6 @@ var SCROLL: float = 0
var delay: float = 0.02 #seconds
var wait: float = 0
var SPEED: int = 1
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
wait = delay
@@ -18,13 +16,13 @@ func _process(delta: float) -> void:
#SCROLL DOWN
if SCROLL == 1:
if (scroll_vertical + get_v_scroll_bar().page) < get_v_scroll_bar().max_value:
scroll_vertical += SPEED
scroll_vertical += Settings.inspiration_list_speed
else:
scroll_back_up()
#SCROLL UP
elif SCROLL == -1:
if scroll_vertical != 0:
scroll_vertical -= SPEED
scroll_vertical -= Settings.inspiration_list_speed
else:
scroll_to_bottom()