feat: add options menu to pause menu (#477)

Co-authored-by: Duncan Brown <duncan@bhs-consultants.com>
This commit is contained in:
Duncan Brown
2021-12-06 01:56:31 -05:00
committed by GitHub
parent 7a0d4ede90
commit fd47499fed
2 changed files with 29 additions and 6 deletions

View File

@@ -26,6 +26,12 @@ func _on_load_game_pressed():
$load_game.show()
# Show the options menu
func _on_options_pressed():
$VBoxContainer.hide()
$options.show()
# Quit the game
func _on_quit_pressed():
escoria.quit()
@@ -41,6 +47,11 @@ func _on_load_game_back_button_pressed():
reset()
# Hide options menu after clicking back button
func _on_options_back_button_pressed():
reset()
# Set whether saving is enabled currently
#
# #### Parameters
@@ -53,4 +64,5 @@ func set_save_enabled(p_enabled: bool):
func reset():
$save_game.hide()
$load_game.hide()
$options.hide()
$VBoxContainer.show()

View File

@@ -1,6 +1,7 @@
[gd_scene load_steps=5 format=2]
[gd_scene load_steps=6 format=2]
[ext_resource path="res://addons/escoria-core/ui_library/menus/pause_menu/pause_menu.gd" type="Script" id=1]
[ext_resource path="res://addons/escoria-core/ui_library/menus/options/options.tscn" type="PackedScene" id=2]
[ext_resource path="res://addons/escoria-core/design/escoria-logo-small.png" type="Texture" id=3]
[ext_resource path="res://addons/escoria-core/ui_library/menus/load_save/save/save_game.tscn" type="PackedScene" id=4]
[ext_resource path="res://addons/escoria-core/ui_library/menus/load_save/load/load_game.tscn" type="PackedScene" id=5]
@@ -26,6 +27,8 @@ visible = false
[node name="load_game" parent="." instance=ExtResource( 5 )]
visible = false
[node name="options" parent="." instance=ExtResource( 2 )]
[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_left = 0.5
anchor_right = 0.5
@@ -39,18 +42,18 @@ __meta__ = {
}
[node name="TextureRect" type="TextureRect" parent="VBoxContainer"]
margin_top = 162.0
margin_top = 147.0
margin_right = 616.0
margin_bottom = 398.0
margin_bottom = 383.0
texture = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="menuitems" type="VBoxContainer" parent="VBoxContainer"]
margin_top = 498.0
margin_top = 483.0
margin_right = 616.0
margin_bottom = 738.0
margin_bottom = 753.0
custom_constants/separation = 10
__meta__ = {
"_edit_use_anchors_": false
@@ -86,10 +89,16 @@ __meta__ = {
"_edit_use_anchors_": false
}
[node name="quit" type="Button" parent="VBoxContainer/menuitems"]
[node name="options" type="Button" parent="VBoxContainer/menuitems"]
margin_top = 220.0
margin_right = 616.0
margin_bottom = 240.0
text = "OPTIONS"
[node name="quit" type="Button" parent="VBoxContainer/menuitems"]
margin_top = 250.0
margin_right = 616.0
margin_bottom = 270.0
size_flags_vertical = 3
text = "QUIT"
__meta__ = {
@@ -98,7 +107,9 @@ __meta__ = {
[connection signal="back_button_pressed" from="save_game" to="." method="_on_save_game_back_button_pressed"]
[connection signal="back_button_pressed" from="load_game" to="." method="_on_load_game_back_button_pressed"]
[connection signal="back_button_pressed" from="options" to="." method="_on_options_back_button_pressed"]
[connection signal="pressed" from="VBoxContainer/menuitems/continue" to="." method="_on_continue_pressed"]
[connection signal="pressed" from="VBoxContainer/menuitems/save_game" to="." method="_on_save_game_pressed"]
[connection signal="pressed" from="VBoxContainer/menuitems/load_game" to="." method="_on_load_game_pressed"]
[connection signal="pressed" from="VBoxContainer/menuitems/options" to="." method="_on_options_pressed"]
[connection signal="pressed" from="VBoxContainer/menuitems/quit" to="." method="_on_quit_pressed"]