12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- [gd_scene load_steps=2 format=3 uid="uid://ciayropge4xvk"]
- [ext_resource type="Script" path="res://UI/PauseScreen.gd" id="1_5nsl1"]
- [node name="PauseScreen" type="Control"]
- process_mode = 3
- layout_mode = 3
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- script = ExtResource("1_5nsl1")
- [node name="ColorRect" type="ColorRect" parent="."]
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- color = Color(0.447059, 0.690196, 1, 0.282353)
- [node name="CenterContainer" type="CenterContainer" parent="."]
- anchors_preset = 15
- anchor_right = 1.0
- anchor_bottom = 1.0
- grow_horizontal = 2
- grow_vertical = 2
- [node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"]
- offset_left = 903.0
- offset_top = 489.0
- offset_right = 1017.0
- offset_bottom = 590.0
- [node name="BackToMenuButton" type="Button" parent="CenterContainer/VBoxContainer"]
- offset_right = 114.0
- offset_bottom = 31.0
- text = "back to menu
- "
- [node name="RestartButton" type="Button" parent="CenterContainer/VBoxContainer"]
- offset_top = 35.0
- offset_right = 114.0
- offset_bottom = 66.0
- text = "restart
- "
- [node name="ResumeButton" type="Button" parent="CenterContainer/VBoxContainer"]
- offset_top = 70.0
- offset_right = 114.0
- offset_bottom = 101.0
- text = "resume "
- [connection signal="pressed" from="CenterContainer/VBoxContainer/BackToMenuButton" to="." method="_on_back_to_menu_button_pressed"]
- [connection signal="pressed" from="CenterContainer/VBoxContainer/RestartButton" to="." method="_on_restart_button_pressed"]
- [connection signal="pressed" from="CenterContainer/VBoxContainer/ResumeButton" to="." method="_on_resume_button_pressed"]
|