-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMainMenu.tscn
82 lines (69 loc) · 2.35 KB
/
MainMenu.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
81
82
[gd_scene load_steps=2 format=3 uid="uid://bid1bc51vj1pu"]
[ext_resource type="Script" path="res://MainMenu.gd" id="1_csk6w"]
[node name="MainMenu" type="CanvasLayer"]
script = ExtResource("1_csk6w")
[node name="Menu" type="Control" parent="."]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="MarginContainer" type="MarginContainer" parent="Menu"]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_constants/margin_left = 80
theme_override_constants/margin_top = 60
[node name="ControlContainer" type="VBoxContainer" parent="Menu"]
layout_mode = 2
offset_left = 80.0
offset_top = 60.0
offset_right = 1152.0
offset_bottom = 648.0
[node name="Label" type="Label" parent="Menu/ControlContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 64
text = "Crazy Ride"
[node name="StartBtn" type="Button" parent="Menu/ControlContainer"]
layout_mode = 2
size_flags_horizontal = 0
theme_override_font_sizes/font_size = 48
text = "Start game"
flat = true
alignment = 0
[node name="ResumeBtn" type="Button" parent="Menu/ControlContainer"]
layout_mode = 2
size_flags_horizontal = 0
theme_override_font_sizes/font_size = 48
text = "Resume game"
flat = true
alignment = 0
[node name="RestartBtn" type="Button" parent="Menu/ControlContainer"]
layout_mode = 2
size_flags_horizontal = 0
theme_override_font_sizes/font_size = 48
text = "Restart game"
flat = true
alignment = 0
[node name="MarginContainer" type="MarginContainer" parent="Menu/ControlContainer"]
layout_mode = 2
size_flags_vertical = 3
[node name="QuitBtn" type="Button" parent="Menu/ControlContainer"]
layout_mode = 2
size_flags_horizontal = 0
theme_override_font_sizes/font_size = 48
text = "Quit
"
flat = true
alignment = 0
[node name="MarginContainer2" type="MarginContainer" parent="Menu/ControlContainer"]
layout_mode = 2
size_flags_vertical = 3
[connection signal="pressed" from="Menu/ControlContainer/StartBtn" to="." method="_on_start_btn_pressed"]
[connection signal="pressed" from="Menu/ControlContainer/ResumeBtn" to="." method="_on_resume_btn_pressed"]
[connection signal="pressed" from="Menu/ControlContainer/RestartBtn" to="." method="_on_restart_btn_pressed"]
[connection signal="pressed" from="Menu/ControlContainer/QuitBtn" to="." method="_on_quit_btn_pressed"]