9 lines
161 B
GDScript3
9 lines
161 B
GDScript3
![]() |
extends AudioStreamPlayer
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
finished.connect(loop)
|
||
|
|
||
|
func loop() -> void:
|
||
|
play()
|