Files
Bucket Of Chicken 1dbaa781dc Alot of changes(description)
- finally fixed the save system so it saves new users files
- added better bgs
- reorganized files so its less of a clusterfuck
2025-08-10 07:20:17 +02:00

21 lines
579 B
GDScript

extends Button
@onready var search_results: SearchResults = $"../SearchResults"
@onready var parent:MainScene = owner
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func _pressed() -> void:
if search_results.SongsAmount != parent.textSongs.size():
search_results.clear()
for song in parent.textSongs:
var nam = song
search_results.add_item(nam)
search_results.show()