blob: 4a8f26e41db50dbf9f80529d3bf064f9c68189af (
plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
[gd_scene load_steps=8 format=3 uid="uid://d3xrwsv32hs6k"]
[ext_resource type="Script" path="res://Scenes/UI/Menu.gd" id="1_vwah3"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_flq5r"]
bg_color = Color(0, 0, 0, 0.784314)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u0ugs"]
bg_color = Color(0, 0, 0, 0.784314)
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_p483f"]
[sub_resource type="LabelSettings" id="LabelSettings_3ht7i"]
font_size = 10
[sub_resource type="LabelSettings" id="LabelSettings_s4847"]
font_size = 10
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_7at3v"]
[node name="TabContainer" type="TabContainer"]
process_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_font_sizes/font_size = 10
theme_override_styles/panel = SubResource("StyleBoxFlat_flq5r")
theme_override_styles/tabbar_background = SubResource("StyleBoxFlat_u0ugs")
clip_tabs = false
script = ExtResource("1_vwah3")
[node name="Bombs" type="MarginContainer" parent="."]
layout_mode = 2
theme_override_constants/margin_left = 8
theme_override_constants/margin_top = 8
theme_override_constants/margin_right = 8
theme_override_constants/margin_bottom = 8
[node name="Panel" type="Panel" parent="Bombs"]
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxEmpty_p483f")
[node name="HBoxContainer" type="HBoxContainer" parent="Bombs/Panel"]
layout_mode = 1
offset_right = 177.0
offset_bottom = 101.0
[node name="VBoxContainer" type="VBoxContainer" parent="Bombs/Panel/HBoxContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="Bombs/Panel/HBoxContainer/VBoxContainer"]
layout_mode = 2
text = "Type"
label_settings = SubResource("LabelSettings_3ht7i")
horizontal_alignment = 1
[node name="ButtonBombNormal" type="Button" parent="Bombs/Panel/HBoxContainer/VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 10
text = "Normal"
[node name="ButtonBombBreakables" type="Button" parent="Bombs/Panel/HBoxContainer/VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 10
text = "Breakables"
[node name="Space" type="Control" parent="Bombs/Panel/HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
[node name="VBoxContainer2" type="VBoxContainer" parent="Bombs/Panel/HBoxContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="Bombs/Panel/HBoxContainer/VBoxContainer2"]
layout_mode = 2
text = "Power"
label_settings = SubResource("LabelSettings_s4847")
horizontal_alignment = 1
[node name="BombPower" type="ItemList" parent="Bombs/Panel/HBoxContainer/VBoxContainer2"]
layout_mode = 2
theme_override_font_sizes/font_size = 10
auto_height = true
item_count = 4
item_0/text = "2"
item_1/text = "3"
item_2/text = "4"
item_3/text = "5"
[node name="System" type="MarginContainer" parent="."]
visible = false
layout_mode = 2
theme_override_constants/margin_left = 16
theme_override_constants/margin_top = 16
theme_override_constants/margin_right = 16
theme_override_constants/margin_bottom = 16
[node name="Panel" type="Panel" parent="System"]
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxEmpty_7at3v")
[node name="VBoxContainer" type="VBoxContainer" parent="System/Panel"]
layout_mode = 1
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -92.0
offset_top = -48.0
grow_horizontal = 0
grow_vertical = 0
[node name="ButtonResume" type="Button" parent="System/Panel/VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 10
text = "Resume Game"
[node name="ButtonQuit" type="Button" parent="System/Panel/VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 10
text = "Quit Game"
[connection signal="pressed" from="Bombs/Panel/HBoxContainer/VBoxContainer/ButtonBombNormal" to="." method="_on_button_bomb_normal_pressed"]
[connection signal="pressed" from="Bombs/Panel/HBoxContainer/VBoxContainer/ButtonBombBreakables" to="." method="_on_button_bomb_breakables_pressed"]
[connection signal="item_selected" from="Bombs/Panel/HBoxContainer/VBoxContainer2/BombPower" to="." method="_on_bomb_power_item_selected"]
[connection signal="pressed" from="System/Panel/VBoxContainer/ButtonResume" to="." method="_on_button_resume_pressed"]
[connection signal="pressed" from="System/Panel/VBoxContainer/ButtonQuit" to="." method="_on_button_quit_pressed"]
|