Skip to content

Commit

Permalink
🐛 Fix missing music (again?)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffo99 committed Apr 3, 2022
1 parent e058225 commit 33c1c8b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/levels/Game.tscn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[gd_scene load_steps=21 format=2]
[gd_scene load_steps=24 format=2]

[ext_resource path="res://src/mechanics/Background.tscn" type="PackedScene" id=1]
[ext_resource path="res://src/mechanics/Darkness.tscn" type="PackedScene" id=2]
Expand All @@ -18,6 +18,9 @@
[ext_resource path="res://src/entities/enemies/EnemySnowmanRight.png" type="Texture" id=16]
[ext_resource path="res://src/behaviours/graphics/FourSidedSprite.tscn" type="PackedScene" id=17]
[ext_resource path="res://src/behaviours/movement/AttractedToMovement.tscn" type="PackedScene" id=18]
[ext_resource path="res://src/music/BaseDrum.mp3" type="AudioStream" id=19]
[ext_resource path="res://src/music/BaseBell.mp3" type="AudioStream" id=20]
[ext_resource path="res://src/music/BaseChoir.mp3" type="AudioStream" id=21]

[sub_resource type="CapsuleShape2D" id=1]
radius = 9.0
Expand Down Expand Up @@ -58,14 +61,17 @@ layer = 0
script = ExtResource( 11 )

[node name="Bell" type="AudioStreamPlayer" parent="PhaseOne/Music"]
stream = ExtResource( 20 )
volume_db = -80.0
autoplay = true

[node name="Choir" type="AudioStreamPlayer" parent="PhaseOne/Music"]
stream = ExtResource( 21 )
volume_db = -80.0
autoplay = true

[node name="Drum" type="AudioStreamPlayer" parent="PhaseOne/Music"]
stream = ExtResource( 19 )
volume_db = -80.0
autoplay = true

Expand Down

0 comments on commit 33c1c8b

Please sign in to comment.