aboutsummaryrefslogtreecommitdiffstats
path: root/godot/scenes/Game.tscn
diff options
context:
space:
mode:
authorLibravatar David <david003@gmx.net>2022-07-17 15:10:33 +0200
committerLibravatar David <david003@gmx.net>2022-07-17 15:10:33 +0200
commitcbb2770401241f864fc0df712e27a3a84572e499 (patch)
tree3a61589e0e523bf11172859f5bcb4a8d1f5f2f03 /godot/scenes/Game.tscn
parent1b015a5989a3da04f08aaa06db444c875ea97df1 (diff)
parent9e9101b8c27d723696367692ac7ba24e5248ce37 (diff)
download2022-cbb2770401241f864fc0df712e27a3a84572e499.tar.gz
2022-cbb2770401241f864fc0df712e27a3a84572e499.tar.bz2
2022-cbb2770401241f864fc0df712e27a3a84572e499.zip
Merge branch 'main' of codeberg.org:code-your-friends/gmtk2022
Diffstat (limited to 'godot/scenes/Game.tscn')
-rw-r--r--godot/scenes/Game.tscn26
1 files changed, 24 insertions, 2 deletions
diff --git a/godot/scenes/Game.tscn b/godot/scenes/Game.tscn
index 411b825..f7223a4 100644
--- a/godot/scenes/Game.tscn
+++ b/godot/scenes/Game.tscn
@@ -1,4 +1,4 @@
-[gd_scene load_steps=7 format=2]
+[gd_scene load_steps=8 format=2]
[ext_resource path="res://scenes/Game.gd" type="Script" id=1]
[ext_resource path="res://scenes/levels/level1/level1.tscn" type="PackedScene" id=2]
@@ -6,6 +6,7 @@
[ext_resource path="res://assets/fonts/format.tres" type="DynamicFont" id=4]
[ext_resource path="res://scenes/objects/Scoreboard.tscn" type="PackedScene" id=5]
[ext_resource path="res://assets/sounds/bgm.mp3" type="AudioStream" id=6]
+[ext_resource path="res://assets/sounds/jingle.wav" type="AudioStream" id=7]
[node name="Game" type="Spatial"]
script = ExtResource( 1 )
@@ -16,10 +17,30 @@ visible = false
margin_right = -0.319946
margin_bottom = 0.47998
-[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
+[node name="Evaluation" type="Control" parent="."]
+visible = false
+anchor_right = 1.0
+anchor_bottom = 1.0
+
+[node name="EvaluationLabel" type="Label" parent="Evaluation"]
+anchor_left = 0.3
+anchor_top = 0.4
+anchor_right = 0.7
+anchor_bottom = 0.5
+theme = ExtResource( 3 )
+text = "Finished
+"
+align = 1
+valign = 1
+
+[node name="BGMPLayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 6 )
autoplay = true
+[node name="JinglePlayer" type="AudioStreamPlayer2D" parent="."]
+stream = ExtResource( 7 )
+volume_db = 1.0
+
[node name="Level1" parent="." instance=ExtResource( 2 )]
[node name="PausePopup" type="Control" parent="."]
@@ -75,6 +96,7 @@ margin_right = 360.0
margin_bottom = 393.0
text = "Quit"
+[connection signal="finished" from="JinglePlayer" to="." method="_on_JinglePlayer_finished"]
[connection signal="pressed" from="PausePopup/Panel/VBoxContainer/ResumeButton" to="." method="_on_ResumeButton_pressed"]
[connection signal="pressed" from="PausePopup/Panel/VBoxContainer/MainMenuButton" to="." method="_on_MainMenuButton_pressed"]
[connection signal="pressed" from="PausePopup/Panel/VBoxContainer/QuitButton" to="." method="_on_QuitButton_pressed"]