blob: 539daef1a5a2e2e8c67d8148d03d49ea25a43f4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://sfx/sound_track_1.wav" type="AudioStream" id=1]
[ext_resource path="res://scenes/background_music.gd" type="Script" id=2]
[node name="Parent" type="Node"]
script = ExtResource( 2 )
[node name="Sound1" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 1 )
volume_db = -13.867
autoplay = true
[connection signal="finished" from="Sound1" to="." method="_on_AudioStreamPlayer_finished"]
|