blob: 84263a0a389a63069888e6ff496179a80de545af (
plain) (
blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
[gd_scene load_steps=4 format=3 uid="uid://cu0s2nljmac8c"]
[ext_resource type="Script" path="res://Scripts/game.gd" id="1_1dait"]
[ext_resource type="AudioStream" uid="uid://b3saof3ftqyxw" path="res://Assets/sound/Komiku_-_58_-_Universe_big_takedown.mp3" id="2_m58v4"]
[sub_resource type="LabelSettings" id="LabelSettings_ylef8"]
font_size = 64
[node name="Game" type="Node2D"]
script = ExtResource("1_1dait")
[node name="JinglePlayer" type="AudioStreamPlayer2D" parent="."]
process_mode = 3
stream = ExtResource("2_m58v4")
autoplay = true
[node name="Evaluation" type="Control" parent="."]
visible = false
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="EvaluationLabel" type="Label" parent="Evaluation"]
layout_mode = 0
anchor_left = 0.3
anchor_top = 0.4
anchor_right = 0.7
anchor_bottom = 0.5
text = "Finished
"
[node name="LoadedLevel" type="Node2D" parent="."]
[node name="CanvasLayer" type="CanvasLayer" parent="."]
[node name="PausePopup" type="Control" parent="CanvasLayer"]
process_mode = 2
visible = false
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="Panel" type="Panel" parent="CanvasLayer/PausePopup"]
layout_mode = 0
anchor_right = 1.0
anchor_bottom = 1.0
[node name="Label" type="Label" parent="CanvasLayer/PausePopup/Panel"]
layout_mode = 0
anchor_right = 1.0
anchor_bottom = 0.3
text = "Game is Paused"
label_settings = SubResource("LabelSettings_ylef8")
horizontal_alignment = 1
vertical_alignment = 1
[node name="VBoxContainer" type="VBoxContainer" parent="CanvasLayer/PausePopup/Panel"]
layout_mode = 1
anchors_preset = -1
anchor_left = 0.3
anchor_top = 0.3
anchor_right = 0.7
anchor_bottom = 1.0
alignment = 1
[node name="ResumeButton" type="Button" parent="CanvasLayer/PausePopup/Panel/VBoxContainer"]
layout_mode = 2
text = "Resume"
[node name="MainMenuButton" type="Button" parent="CanvasLayer/PausePopup/Panel/VBoxContainer"]
layout_mode = 2
text = "Main Menu"
[node name="QuitButton" type="Button" parent="CanvasLayer/PausePopup/Panel/VBoxContainer"]
layout_mode = 2
text = "Quit"
[connection signal="pressed" from="CanvasLayer/PausePopup/Panel/VBoxContainer/ResumeButton" to="." method="_on_ResumeButton_pressed"]
[connection signal="pressed" from="CanvasLayer/PausePopup/Panel/VBoxContainer/MainMenuButton" to="." method="_on_MainMenuButton_pressed"]
[connection signal="pressed" from="CanvasLayer/PausePopup/Panel/VBoxContainer/QuitButton" to="." method="_on_QuitButton_pressed"]
|