From 6cdf5b1fc587bfa7f3ed8b3388c232269946a5da Mon Sep 17 00:00:00 2001 From: IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> Date: Sun, 17 Jul 2022 06:33:18 +0200 Subject: small UI changes --- godot/scenes/Game.tscn | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'godot/scenes/Game.tscn') diff --git a/godot/scenes/Game.tscn b/godot/scenes/Game.tscn index 60a965d..411b825 100644 --- a/godot/scenes/Game.tscn +++ b/godot/scenes/Game.tscn @@ -58,16 +58,23 @@ custom_constants/separation = 20 alignment = 1 [node name="ResumeButton" type="Button" parent="PausePopup/Panel/VBoxContainer"] -margin_top = 161.0 +margin_top = 110.0 margin_right = 360.0 -margin_bottom = 242.0 +margin_bottom = 191.0 text = "Resume" +[node name="MainMenuButton" type="Button" parent="PausePopup/Panel/VBoxContainer"] +margin_top = 211.0 +margin_right = 360.0 +margin_bottom = 292.0 +text = "Main Menu" + [node name="QuitButton" type="Button" parent="PausePopup/Panel/VBoxContainer"] -margin_top = 262.0 +margin_top = 312.0 margin_right = 360.0 -margin_bottom = 343.0 +margin_bottom = 393.0 text = "Quit" [connection signal="pressed" from="PausePopup/Panel/VBoxContainer/ResumeButton" to="." method="_on_ResumeButton_pressed"] +[connection signal="pressed" from="PausePopup/Panel/VBoxContainer/MainMenuButton" to="." method="_on_MainMenuButton_pressed"] [connection signal="pressed" from="PausePopup/Panel/VBoxContainer/QuitButton" to="." method="_on_QuitButton_pressed"] -- cgit