-
Notifications
You must be signed in to change notification settings - Fork 5
/
pause_menu.tscn
80 lines (68 loc) · 2.16 KB
/
pause_menu.tscn
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
[gd_scene load_steps=3 format=3 uid="uid://b50q57f5m0tqa"]
[ext_resource type="Script" path="res://PauseMenu.gd" id="1_pv3fv"]
[ext_resource type="PackedScene" uid="uid://dhmslu1jfrrdq" path="res://load_menu.tscn" id="2_qumbn"]
[node name="PauseMenu" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_pv3fv")
[node name="Panel" type="Panel" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -244.0
offset_top = -83.0
offset_right = 244.0
offset_bottom = 208.0
grow_horizontal = 2
grow_vertical = 2
[node name="Resume" type="Button" parent="VBoxContainer"]
layout_mode = 2
text = "Resume"
[node name="Save" type="Button" parent="VBoxContainer"]
layout_mode = 2
text = "Save"
[node name="Load" type="Button" parent="VBoxContainer"]
layout_mode = 2
text = "Load"
[node name="Settings" type="Button" parent="VBoxContainer"]
layout_mode = 2
text = "Setting"
[node name="Exit" type="Button" parent="VBoxContainer"]
layout_mode = 2
text = "Exit"
[node name="RichTextLabel" type="RichTextLabel" parent="."]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -35.0
offset_top = -137.0
offset_right = 35.0
offset_bottom = -97.0
grow_horizontal = 2
grow_vertical = 2
text = "Paused"
[node name="LoadMenu" parent="." instance=ExtResource("2_qumbn")]
visible = false
layout_mode = 1
[connection signal="button_down" from="VBoxContainer/Resume" to="." method="_on_resume_button_down"]
[connection signal="button_down" from="VBoxContainer/Save" to="." method="_on_save_button_down"]
[connection signal="button_down" from="VBoxContainer/Load" to="." method="_on_load_button_down"]
[connection signal="button_down" from="VBoxContainer/Settings" to="." method="_on_settings_button_down"]
[connection signal="button_down" from="VBoxContainer/Exit" to="." method="_on_exit_button_down"]