like everything

This commit is contained in:
pennyrigate 2025-02-27 00:02:50 -05:00
parent 246e6656f4
commit 6c57765608
9 changed files with 557 additions and 0 deletions

4
sound_player/sound.gd Normal file
View file

@ -0,0 +1,4 @@
extends AudioStreamPlayer
func _on_finished() -> void:
queue_free()

9
sound_player/sound.tscn Normal file
View file

@ -0,0 +1,9 @@
[gd_scene load_steps=2 format=3 uid="uid://bldqqpajcj62n"]
[ext_resource type="Script" path="res://dvn/sound_player/sound.gd" id="1_boi0g"]
[node name="Sound" type="AudioStreamPlayer"]
bus = &"SFX"
script = ExtResource("1_boi0g")
[connection signal="finished" from="." to="." method="_on_finished"]