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.
66 lines
1.8 KiB
66 lines
1.8 KiB
[gd_scene load_steps=6 format=2]
|
|
|
|
[ext_resource path="res://resources/ui/theme.tres" type="Theme" id=1]
|
|
[ext_resource path="res://scripts/menu/ingame.gd" type="Script" id=2]
|
|
[ext_resource path="res://assets/icons/open.png" type="Texture" id=3]
|
|
[ext_resource path="res://assets/icons/wrench.png" type="Texture" id=4]
|
|
[ext_resource path="res://assets/icons/arrowLeft.png" type="Texture" id=5]
|
|
|
|
[node name="ingame_menu" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
margin_left = -0.857361
|
|
margin_right = -0.857361
|
|
theme = ExtResource( 1 )
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="menu" type="Panel" parent="."]
|
|
anchor_left = 0.5
|
|
anchor_top = 0.5
|
|
anchor_right = 0.5
|
|
anchor_bottom = 0.5
|
|
margin_left = -155.0
|
|
margin_top = -155.0
|
|
margin_right = 155.0
|
|
margin_bottom = 155.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
|
|
[node name="resume" type="Button" parent="menu"]
|
|
anchor_top = 0.5
|
|
anchor_right = 1.0
|
|
anchor_bottom = 0.5
|
|
margin_left = -0.857422
|
|
margin_top = -153.725
|
|
margin_right = -0.857422
|
|
margin_bottom = -97.7245
|
|
text = "Resume"
|
|
icon = ExtResource( 3 )
|
|
flat = true
|
|
|
|
[node name="settings" type="Button" parent="menu"]
|
|
anchor_top = 0.5
|
|
anchor_right = 1.0
|
|
anchor_bottom = 0.5
|
|
margin_left = -0.572113
|
|
margin_top = -25.128
|
|
margin_right = -0.572113
|
|
margin_bottom = 30.872
|
|
text = "Settings"
|
|
icon = ExtResource( 4 )
|
|
flat = true
|
|
|
|
[node name="end" type="Button" parent="menu"]
|
|
anchor_top = 0.5
|
|
anchor_right = 1.0
|
|
anchor_bottom = 0.5
|
|
margin_left = -0.572113
|
|
margin_top = 98.872
|
|
margin_right = -0.572113
|
|
margin_bottom = 154.872
|
|
text = "End Game"
|
|
icon = ExtResource( 5 )
|
|
flat = true
|
|
[connection signal="pressed" from="menu/resume" to="." method="_on_resume_pressed"]
|
|
[connection signal="pressed" from="menu/settings" to="." method="_on_settings_pressed"]
|
|
[connection signal="pressed" from="menu/end" to="." method="_on_end_pressed"]
|