-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMusic.tscn
More file actions
25 lines (20 loc) · 806 Bytes
/
Copy pathMusic.tscn
File metadata and controls
25 lines (20 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[gd_scene load_steps=5 format=2]
[ext_resource path="res://Audio/Another World.wav" type="AudioStream" id=1]
[ext_resource path="res://Music.gd" type="Script" id=2]
[ext_resource path="res://Audio/laser4.ogg" type="AudioStream" id=3]
[ext_resource path="res://Audio/rumble2.ogg" type="AudioStream" id=4]
[node name="Music" type="Node"]
script = ExtResource( 2 )
[node name="Theme" type="AudioStreamPlayer" parent="."]
process_mode = 2
stream = ExtResource( 1 )
autoplay = true
[node name="Laser" type="AudioStreamPlayer2D" parent="."]
stream = ExtResource( 3 )
volume_db = -8.0
pitch_scale = 0.32
[node name="Explosion" type="AudioStreamPlayer2D" parent="."]
stream = ExtResource( 4 )
volume_db = 3.216
pitch_scale = 0.57
[connection signal="finished" from="Theme" to="." method="_on_Theme_finished"]