9 lines
161 B
GDScript
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()
|