74 lines
2.3 KiB
Plaintext
74 lines
2.3 KiB
Plaintext
|
[gd_scene load_steps=4 format=2]
|
||
|
|
||
|
[ext_resource path="res://assets/blackbackground.png" type="Texture" id=1]
|
||
|
[ext_resource path="res://assets/ui_theme.tres" type="Theme" id=2]
|
||
|
[ext_resource path="res://Screens/PauseScreen.gd" type="Script" id=3]
|
||
|
|
||
|
[node name="PauseScreen" type="Control"]
|
||
|
pause_mode = 2
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
script = ExtResource( 3 )
|
||
|
|
||
|
[node name="pauseBackground" type="TextureRect" parent="."]
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
texture = ExtResource( 1 )
|
||
|
stretch_mode = 1
|
||
|
|
||
|
[node name="CenterContainer" type="CenterContainer" parent="."]
|
||
|
anchor_right = 1.0
|
||
|
anchor_bottom = 1.0
|
||
|
|
||
|
[node name="VBoxContainer" type="VBoxContainer" parent="CenterContainer"]
|
||
|
margin_left = 312.0
|
||
|
margin_top = 146.0
|
||
|
margin_right = 712.0
|
||
|
margin_bottom = 454.0
|
||
|
theme = ExtResource( 2 )
|
||
|
custom_constants/separation = 10
|
||
|
|
||
|
[node name="Label" type="Label" parent="CenterContainer/VBoxContainer"]
|
||
|
margin_right = 400.0
|
||
|
margin_bottom = 36.0
|
||
|
text = "Paused"
|
||
|
align = 1
|
||
|
|
||
|
[node name="Spacer" type="Control" parent="CenterContainer/VBoxContainer"]
|
||
|
margin_top = 46.0
|
||
|
margin_right = 400.0
|
||
|
margin_bottom = 76.0
|
||
|
rect_min_size = Vector2( 1, 30 )
|
||
|
|
||
|
[node name="ResumeButton" type="Button" parent="CenterContainer/VBoxContainer"]
|
||
|
margin_top = 86.0
|
||
|
margin_right = 400.0
|
||
|
margin_bottom = 136.0
|
||
|
rect_min_size = Vector2( 400, 50 )
|
||
|
text = "Resume"
|
||
|
|
||
|
[node name="MainMenuButton" type="Button" parent="CenterContainer/VBoxContainer"]
|
||
|
margin_top = 146.0
|
||
|
margin_right = 400.0
|
||
|
margin_bottom = 196.0
|
||
|
rect_min_size = Vector2( 400, 50 )
|
||
|
text = "Main Menu"
|
||
|
|
||
|
[node name="ControlsButton" type="Button" parent="CenterContainer/VBoxContainer"]
|
||
|
margin_top = 206.0
|
||
|
margin_right = 400.0
|
||
|
margin_bottom = 248.0
|
||
|
text = "Controls"
|
||
|
|
||
|
[node name="QuitButton" type="Button" parent="CenterContainer/VBoxContainer"]
|
||
|
margin_top = 258.0
|
||
|
margin_right = 400.0
|
||
|
margin_bottom = 308.0
|
||
|
rect_min_size = Vector2( 400, 50 )
|
||
|
text = "Quit"
|
||
|
|
||
|
[connection signal="pressed" from="CenterContainer/VBoxContainer/ResumeButton" to="." method="_on_ResumeButton_pressed"]
|
||
|
[connection signal="pressed" from="CenterContainer/VBoxContainer/MainMenuButton" to="." method="_on_MainMenuButton_pressed"]
|
||
|
[connection signal="pressed" from="CenterContainer/VBoxContainer/ControlsButton" to="." method="_on_ControlsButton_pressed"]
|
||
|
[connection signal="pressed" from="CenterContainer/VBoxContainer/QuitButton" to="." method="_on_QuitButton_pressed"]
|