Files
Simplaudio/songs_menu.gd
T
2024-10-27 12:59:09 +01:00

16 lines
376 B
GDScript

extends Button
@onready var search_results: SearchResults = $"../SearchResults"
# 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:
search_results.show()