speedin-santa/Scripts/AudioLoop.gd
2024-12-18 16:35:26 -05:00

9 lines
161 B
GDScript

extends AudioStreamPlayer
# Called when the node enters the scene tree for the first time.
func _ready():
finished.connect(loop)
func loop() -> void:
play()