From f48908a84490657bc03f4b41d0fc977c1381d0b9 Mon Sep 17 00:00:00 2001 From: IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> Date: Sun, 17 Jul 2022 13:03:35 +0200 Subject: player evaluation at the end --- godot/scenes/Game.tscn | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'godot/scenes/Game.tscn') diff --git a/godot/scenes/Game.tscn b/godot/scenes/Game.tscn index 411b825..56f5c55 100644 --- a/godot/scenes/Game.tscn +++ b/godot/scenes/Game.tscn @@ -16,6 +16,22 @@ visible = false margin_right = -0.319946 margin_bottom = 0.47998 +[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="AudioStreamPlayer" type="AudioStreamPlayer" parent="."] stream = ExtResource( 6 ) autoplay = true -- cgit From 83985c5b2f9829c7f335e31158bd7d3b56a3e2d6 Mon Sep 17 00:00:00 2001 From: IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> Date: Sun, 17 Jul 2022 13:20:13 +0200 Subject: jingle at the end --- godot/scenes/Game.tscn | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'godot/scenes/Game.tscn') diff --git a/godot/scenes/Game.tscn b/godot/scenes/Game.tscn index 56f5c55..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 ) @@ -32,10 +33,14 @@ text = "Finished align = 1 valign = 1 -[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."] +[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="."] @@ -91,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"] -- cgit