You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
[gd_scene load_steps=2 format=3 uid="uid://b0mainmenu1"]
|
|
|
|
[ext_resource type="Script" path="res://scripts/ui/main_menu.gd" id="1_menu"]
|
|
|
|
[node name="MainMenu" 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_menu")
|
|
|
|
[node name="Panel" type="ColorRect" parent="."]
|
|
layout_mode = 1
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
color = Color(0.08, 0.1, 0.14, 1)
|
|
|
|
[node name="Title" type="Label" parent="."]
|
|
layout_mode = 1
|
|
anchors_preset = 10
|
|
anchor_right = 1.0
|
|
offset_top = 180.0
|
|
offset_bottom = 280.0
|
|
text = "MY BRICKS"
|
|
horizontal_alignment = 1
|
|
vertical_alignment = 1
|
|
|
|
[node name="StartButton" type="Button" 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 = -100.0
|
|
offset_top = -40.0
|
|
offset_right = 100.0
|
|
offset_bottom = 0.0
|
|
text = "开始游戏"
|
|
|
|
[node name="QuitButton" type="Button" 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 = -100.0
|
|
offset_top = 20.0
|
|
offset_right = 100.0
|
|
offset_bottom = 60.0
|
|
text = "退出"
|
|
|
|
[node name="Hint" type="Label" parent="."]
|
|
layout_mode = 1
|
|
anchors_preset = 12
|
|
anchor_top = 1.0
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
offset_top = -40.0
|
|
text = "空格 = 发球 / 鼠标移动挡板"
|
|
horizontal_alignment = 1
|
|
|
|
[connection signal="pressed" from="StartButton" to="." method="_on_start_pressed"]
|
|
[connection signal="pressed" from="QuitButton" to="." method="_on_quit_pressed"]
|
|
|