@ -1,32 +0,0 @@ | |||||
class_name PauseMenu | |||||
extends Panel | |||||
@export var save_load_ui: SaveLoadUI | |||||
func _unhandled_input(event: InputEvent) -> void: | |||||
if event.is_action_pressed("ui_cancel") and self.visible: | |||||
hide_menu() | |||||
elif event.is_action_pressed("ui_cancel") and !self.visible: | |||||
show_menu() | |||||
func hide_menu() -> void: | |||||
SignalManager.close_pause_menu.emit() | |||||
func show_menu() -> void: | |||||
SignalManager.open_pause_menu.emit() | |||||
# Signals | |||||
func _on_exit_game_button_pressed() -> void: | |||||
get_tree().quit() | |||||
func _on_resume_button_pressed() -> void: | |||||
hide_menu() | |||||
func _on_settings_button_pressed() -> void: | |||||
SignalManager.open_settings_menu.emit() | |||||
func _on_saves_button_pressed() -> void: | |||||
save_load_ui.open_save_list.emit() |
@ -1 +0,0 @@ | |||||
uid://d3ysjgxxmyqpw |
@ -1,75 +0,0 @@ | |||||
[gd_scene load_steps=3 format=3 uid="uid://bopvfwcgnnawg"] | |||||
[ext_resource type="Theme" uid="uid://b5q8b0l6qp1dt" path="res://resources/pause_menu_theme.tres" id="1_6tw0m"] | |||||
[ext_resource type="Script" uid="uid://d3ysjgxxmyqpw" path="res://scenes/ui/menus/pause_menu.gd" id="2_0lmf7"] | |||||
[node name="PauseMenu" type="Panel"] | |||||
process_mode = 3 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
theme = ExtResource("1_6tw0m") | |||||
script = ExtResource("2_0lmf7") | |||||
[node name="Background" type="ColorRect" parent="."] | |||||
custom_minimum_size = Vector2(400, 0) | |||||
layout_mode = 1 | |||||
anchors_preset = 13 | |||||
anchor_left = 0.5 | |||||
anchor_right = 0.5 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
color = Color(0.192157, 0.239216, 0.352941, 1) | |||||
[node name="MarginContainer" type="MarginContainer" parent="Background"] | |||||
layout_mode = 1 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
theme_override_constants/margin_left = 10 | |||||
theme_override_constants/margin_top = 10 | |||||
theme_override_constants/margin_right = 10 | |||||
theme_override_constants/margin_bottom = 10 | |||||
[node name="MenuContainer" type="VBoxContainer" parent="Background/MarginContainer"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 4 | |||||
theme_override_constants/separation = 20 | |||||
[node name="Title" type="Label" parent="Background/MarginContainer/MenuContainer"] | |||||
layout_mode = 2 | |||||
theme_override_font_sizes/font_size = 40 | |||||
text = "Paused" | |||||
horizontal_alignment = 1 | |||||
vertical_alignment = 1 | |||||
[node name="ButtonsContainer" type="VBoxContainer" parent="Background/MarginContainer/MenuContainer"] | |||||
layout_mode = 2 | |||||
size_flags_vertical = 6 | |||||
theme_override_constants/separation = 20 | |||||
[node name="ResumeButton" type="Button" parent="Background/MarginContainer/MenuContainer/ButtonsContainer"] | |||||
layout_mode = 2 | |||||
text = "Resume" | |||||
[node name="SavesButton" type="Button" parent="Background/MarginContainer/MenuContainer/ButtonsContainer"] | |||||
layout_mode = 2 | |||||
text = "Saves" | |||||
[node name="SettingsButton" type="Button" parent="Background/MarginContainer/MenuContainer/ButtonsContainer"] | |||||
layout_mode = 2 | |||||
text = "Settings" | |||||
[node name="ExitGameButton" type="Button" parent="Background/MarginContainer/MenuContainer/ButtonsContainer"] | |||||
layout_mode = 2 | |||||
text = "Exit Game" | |||||
[connection signal="pressed" from="Background/MarginContainer/MenuContainer/ButtonsContainer/ResumeButton" to="." method="_on_resume_button_pressed"] | |||||
[connection signal="pressed" from="Background/MarginContainer/MenuContainer/ButtonsContainer/SavesButton" to="." method="_on_saves_button_pressed"] | |||||
[connection signal="pressed" from="Background/MarginContainer/MenuContainer/ButtonsContainer/SettingsButton" to="." method="_on_settings_button_pressed"] | |||||
[connection signal="pressed" from="Background/MarginContainer/MenuContainer/ButtonsContainer/ExitGameButton" to="." method="_on_exit_game_button_pressed"] |
@ -1 +0,0 @@ | |||||
uid://b6831eygibii7 |
@ -1,133 +0,0 @@ | |||||
[gd_scene load_steps=7 format=3 uid="uid://dauchkhmnyk7n"] | |||||
[ext_resource type="Script" uid="uid://b6831eygibii7" path="res://scenes/ui/menus/saves_manager/save_load_ui.gd" id="1_lo08d"] | |||||
[ext_resource type="PackedScene" uid="uid://cyxieflejsggu" path="res://scenes/ui/menus/saves_manager/save_files_list.tscn" id="1_tqtxm"] | |||||
[ext_resource type="PackedScene" uid="uid://bb7poutsn4ex2" path="res://scenes/ui/menus/saves_manager/save_file.tscn" id="2_6uxbh"] | |||||
[ext_resource type="Texture2D" uid="uid://ja8bc1h5x85o" path="res://assets/ui/save-normal.png" id="3_lo08d"] | |||||
[ext_resource type="Texture2D" uid="uid://crqgyft4gfilt" path="res://assets/ui/save-pressed.png" id="4_md7la"] | |||||
[ext_resource type="Texture2D" uid="uid://o3l0j53mgkan" path="res://assets/ui/save-hover.png" id="5_hmxxn"] | |||||
[node name="SaveLoadUI" type="Control" node_paths=PackedStringArray("show_save_ui_button", "new_save_ui", "save_name_input", "create_save_button", "create_save_cancel_button")] | |||||
process_mode = 3 | |||||
layout_mode = 3 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
size_flags_horizontal = 6 | |||||
size_flags_vertical = 4 | |||||
script = ExtResource("1_lo08d") | |||||
show_save_ui_button = NodePath("Panel/MarginContainer/VBoxContainer/BottomRow/SaveButton") | |||||
new_save_ui = NodePath("Panel/NewSaveUI") | |||||
save_name_input = NodePath("Panel/NewSaveUI/MarginContainer/VBoxContainer/SaveNameInput") | |||||
create_save_button = NodePath("Panel/NewSaveUI/MarginContainer/VBoxContainer/SaveButton") | |||||
create_save_cancel_button = NodePath("Panel/NewSaveUI/MarginContainer/VBoxContainer/CancelButton") | |||||
[node name="Panel" type="Panel" parent="."] | |||||
layout_mode = 1 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
[node name="MarginContainer" type="MarginContainer" parent="Panel"] | |||||
layout_mode = 1 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
theme_override_constants/margin_left = 20 | |||||
theme_override_constants/margin_top = 20 | |||||
theme_override_constants/margin_right = 20 | |||||
theme_override_constants/margin_bottom = 20 | |||||
[node name="VBoxContainer" type="VBoxContainer" parent="Panel/MarginContainer"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Panel/MarginContainer/VBoxContainer"] | |||||
layout_mode = 2 | |||||
theme_override_font_sizes/font_size = 40 | |||||
text = "Save/Load Game" | |||||
horizontal_alignment = 1 | |||||
[node name="ScrollContainer" type="ScrollContainer" parent="Panel/MarginContainer/VBoxContainer"] | |||||
custom_minimum_size = Vector2(0, 500) | |||||
layout_mode = 2 | |||||
horizontal_scroll_mode = 0 | |||||
[node name="SaveFilesList" parent="Panel/MarginContainer/VBoxContainer/ScrollContainer" node_paths=PackedStringArray("save_load_ui") instance=ExtResource("1_tqtxm")] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 6 | |||||
save_load_ui = NodePath("../../../../..") | |||||
[node name="SaveFilePanel" parent="Panel/MarginContainer/VBoxContainer/ScrollContainer/SaveFilesList" instance=ExtResource("2_6uxbh")] | |||||
layout_mode = 2 | |||||
[node name="BottomRow" type="HBoxContainer" parent="Panel/MarginContainer/VBoxContainer"] | |||||
layout_mode = 2 | |||||
alignment = 1 | |||||
[node name="SaveButton" type="TextureButton" parent="Panel/MarginContainer/VBoxContainer/BottomRow"] | |||||
clip_contents = true | |||||
custom_minimum_size = Vector2(32, 32) | |||||
layout_mode = 2 | |||||
tooltip_text = "New Save" | |||||
texture_normal = ExtResource("3_lo08d") | |||||
texture_pressed = ExtResource("4_md7la") | |||||
texture_hover = ExtResource("5_hmxxn") | |||||
ignore_texture_size = true | |||||
stretch_mode = 5 | |||||
[node name="NewSaveUI" type="Panel" parent="Panel"] | |||||
visible = false | |||||
custom_minimum_size = Vector2(450, 100) | |||||
layout_mode = 1 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
[node name="MarginContainer" type="MarginContainer" parent="Panel/NewSaveUI"] | |||||
layout_mode = 1 | |||||
anchors_preset = 8 | |||||
anchor_left = 0.5 | |||||
anchor_top = 0.5 | |||||
anchor_right = 0.5 | |||||
anchor_bottom = 0.5 | |||||
offset_left = -205.0 | |||||
offset_top = -29.5 | |||||
offset_right = 205.0 | |||||
offset_bottom = 29.5 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
theme_override_constants/margin_left = 5 | |||||
theme_override_constants/margin_top = 5 | |||||
theme_override_constants/margin_right = 5 | |||||
theme_override_constants/margin_bottom = 5 | |||||
[node name="VBoxContainer" type="VBoxContainer" parent="Panel/NewSaveUI/MarginContainer"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 4 | |||||
size_flags_vertical = 4 | |||||
[node name="SaveNameLabel" type="Label" parent="Panel/NewSaveUI/MarginContainer/VBoxContainer"] | |||||
layout_mode = 2 | |||||
theme_override_font_sizes/font_size = 20 | |||||
text = "Create New Save" | |||||
[node name="SaveNameInput" type="LineEdit" parent="Panel/NewSaveUI/MarginContainer/VBoxContainer"] | |||||
custom_minimum_size = Vector2(400, 0) | |||||
layout_mode = 2 | |||||
placeholder_text = "New Save File Name" | |||||
[node name="SaveButton" type="Button" parent="Panel/NewSaveUI/MarginContainer/VBoxContainer"] | |||||
layout_mode = 2 | |||||
text = "Create Save" | |||||
[node name="CancelButton" type="Button" parent="Panel/NewSaveUI/MarginContainer/VBoxContainer"] | |||||
layout_mode = 2 | |||||
text = "Cancel" |
@ -1 +0,0 @@ | |||||
uid://37ftrpj14msn |
@ -1,283 +0,0 @@ | |||||
[gd_scene load_steps=4 format=3 uid="uid://4bdgwwx27m71"] | |||||
[ext_resource type="Script" uid="uid://37ftrpj14msn" path="res://scenes/ui/menus/settings_menu.gd" id="1_qwcqe"] | |||||
[ext_resource type="Theme" uid="uid://b5q8b0l6qp1dt" path="res://resources/pause_menu_theme.tres" id="2_mhswj"] | |||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_80b2v"] | |||||
content_margin_left = 10.0 | |||||
content_margin_top = 10.0 | |||||
content_margin_right = 10.0 | |||||
content_margin_bottom = 10.0 | |||||
bg_color = Color(0, 0, 0, 0.27451) | |||||
corner_radius_top_left = 2 | |||||
corner_radius_top_right = 2 | |||||
corner_radius_bottom_right = 2 | |||||
corner_radius_bottom_left = 2 | |||||
[node name="SettingsMenu" type="Panel" node_paths=PackedStringArray("autosaves_input", "block_highlight_input", "held_block_ui_input", "quick_slots_ui_input", "screenshot_icon_input", "waila_input", "resolution_input", "fullscreen_input", "vsync_input", "fov_slider", "fov_value_label")] | |||||
process_mode = 3 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
script = ExtResource("1_qwcqe") | |||||
autosaves_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Game/Autosaves/CheckButton") | |||||
block_highlight_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Game/BlockHighlight/CheckButton") | |||||
held_block_ui_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Game/HeldBlockUI/CheckButton") | |||||
quick_slots_ui_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Game/QuickslotsUI/CheckButton") | |||||
screenshot_icon_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Game/ScreenshotIcon/CheckButton") | |||||
waila_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Game/Waila/CheckButton") | |||||
resolution_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Graphics/Resolution/OptionButton") | |||||
fullscreen_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Graphics/Fullscreen/CheckBox") | |||||
vsync_input = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Graphics/VSync/CheckBox") | |||||
fov_slider = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Graphics/FOV/HSlider") | |||||
fov_value_label = NodePath("Background/MarginContainer/VBoxContainer/TabContainer/Graphics/FOV/Value") | |||||
metadata/_edit_vertical_guides_ = [349.0] | |||||
[node name="Background" type="ColorRect" parent="."] | |||||
custom_minimum_size = Vector2(400, 0) | |||||
layout_mode = 1 | |||||
anchors_preset = 13 | |||||
anchor_left = 0.5 | |||||
anchor_right = 0.5 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
color = Color(0.192157, 0.239216, 0.352941, 1) | |||||
[node name="MarginContainer" type="MarginContainer" parent="Background"] | |||||
layout_mode = 1 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
theme_override_constants/margin_left = 10 | |||||
theme_override_constants/margin_top = 10 | |||||
theme_override_constants/margin_right = 10 | |||||
theme_override_constants/margin_bottom = 10 | |||||
[node name="VBoxContainer" type="VBoxContainer" parent="Background/MarginContainer"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 4 | |||||
theme_override_constants/separation = 20 | |||||
[node name="Title" type="Label" parent="Background/MarginContainer/VBoxContainer"] | |||||
layout_mode = 2 | |||||
theme_override_font_sizes/font_size = 40 | |||||
text = "Settings" | |||||
horizontal_alignment = 1 | |||||
[node name="TabContainer" type="TabContainer" parent="Background/MarginContainer/VBoxContainer"] | |||||
layout_mode = 2 | |||||
theme_override_constants/side_margin = 0 | |||||
theme_override_styles/panel = SubResource("StyleBoxFlat_80b2v") | |||||
current_tab = 0 | |||||
clip_tabs = false | |||||
[node name="Game" type="VBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer"] | |||||
layout_mode = 2 | |||||
metadata/_tab_index = 0 | |||||
[node name="BlockHighlight" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/BlockHighlight"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Enable Block Highlighting" | |||||
[node name="CheckButton" type="CheckButton" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/BlockHighlight"] | |||||
layout_mode = 2 | |||||
button_pressed = true | |||||
[node name="Waila" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/Waila"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Enable Waila" | |||||
[node name="CheckButton" type="CheckButton" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/Waila"] | |||||
layout_mode = 2 | |||||
button_pressed = true | |||||
[node name="QuickslotsUI" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/QuickslotsUI"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Enable Quickslots UI" | |||||
[node name="CheckButton" type="CheckButton" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/QuickslotsUI"] | |||||
layout_mode = 2 | |||||
button_pressed = true | |||||
[node name="HeldBlockUI" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/HeldBlockUI"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Enable Player Held Block" | |||||
[node name="CheckButton" type="CheckButton" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/HeldBlockUI"] | |||||
layout_mode = 2 | |||||
button_pressed = true | |||||
[node name="ScreenshotIcon" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/ScreenshotIcon"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
tooltip_text = "Enable/Disable the taking of a screenshot to utilize as the save icon." | |||||
mouse_filter = 1 | |||||
text = "Enable Save Screenshot" | |||||
[node name="CheckButton" type="CheckButton" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/ScreenshotIcon"] | |||||
layout_mode = 2 | |||||
tooltip_text = "Enable/Disable the taking of a screenshot to utilize as the save icon." | |||||
button_pressed = true | |||||
[node name="Autosaves" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/Autosaves"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
tooltip_text = "Enable/Disable the taking of a screenshot to utilize as the save icon." | |||||
mouse_filter = 1 | |||||
text = "Enable Autosaves" | |||||
[node name="CheckButton" type="CheckButton" parent="Background/MarginContainer/VBoxContainer/TabContainer/Game/Autosaves"] | |||||
layout_mode = 2 | |||||
tooltip_text = "Enable/Disable the taking of a screenshot to utilize as the save icon." | |||||
button_pressed = true | |||||
[node name="Graphics" type="VBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer"] | |||||
visible = false | |||||
layout_mode = 2 | |||||
metadata/_tab_index = 1 | |||||
[node name="Resolution" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/Resolution"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Resolution" | |||||
[node name="OptionButton" type="OptionButton" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/Resolution"] | |||||
layout_mode = 2 | |||||
selected = 0 | |||||
item_count = 6 | |||||
popup/item_0/text = "1280x720" | |||||
popup/item_0/id = 0 | |||||
popup/item_1/text = "1280x800" | |||||
popup/item_1/id = 4 | |||||
popup/item_2/text = "1920x1080" | |||||
popup/item_2/id = 1 | |||||
popup/item_3/text = "2560x1440" | |||||
popup/item_3/id = 2 | |||||
popup/item_4/text = "3440x1440" | |||||
popup/item_4/id = 3 | |||||
popup/item_5/text = "3840 x 2160" | |||||
popup/item_5/id = 5 | |||||
[node name="Fullscreen" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/Fullscreen"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Fullscreen" | |||||
[node name="CheckBox" type="CheckBox" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/Fullscreen"] | |||||
layout_mode = 2 | |||||
[node name="VSync" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/VSync"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "VSync" | |||||
[node name="CheckBox" type="CheckBox" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/VSync"] | |||||
layout_mode = 2 | |||||
[node name="FOV" type="HBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/FOV"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "FOV" | |||||
[node name="HSlider" type="HSlider" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/FOV"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
min_value = 60.0 | |||||
max_value = 120.0 | |||||
value = 75.0 | |||||
rounded = true | |||||
ticks_on_borders = true | |||||
[node name="Value" type="Label" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/FOV"] | |||||
layout_mode = 2 | |||||
text = "75" | |||||
[node name="HSeparator" type="HSeparator" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics"] | |||||
layout_mode = 2 | |||||
theme_override_constants/separation = 20 | |||||
[node name="CenterContainer" type="CenterContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics"] | |||||
layout_mode = 2 | |||||
[node name="ApplyButton" type="Button" parent="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/CenterContainer"] | |||||
layout_mode = 2 | |||||
text = "Apply/Save" | |||||
[node name="Audio" type="VBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer"] | |||||
visible = false | |||||
layout_mode = 2 | |||||
metadata/_tab_index = 2 | |||||
[node name="Inputs" type="VBoxContainer" parent="Background/MarginContainer/VBoxContainer/TabContainer"] | |||||
visible = false | |||||
layout_mode = 2 | |||||
metadata/_tab_index = 3 | |||||
[node name="BottomRow" type="MarginContainer" parent="Background"] | |||||
layout_mode = 1 | |||||
anchors_preset = 7 | |||||
anchor_left = 0.5 | |||||
anchor_top = 1.0 | |||||
anchor_right = 0.5 | |||||
anchor_bottom = 1.0 | |||||
offset_left = -82.5 | |||||
offset_top = -46.0 | |||||
offset_right = 82.5 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 0 | |||||
theme_override_constants/margin_bottom = 10 | |||||
[node name="CloseButton" type="Button" parent="Background/BottomRow"] | |||||
custom_minimum_size = Vector2(141, 36) | |||||
layout_mode = 2 | |||||
theme = ExtResource("2_mhswj") | |||||
text = "Close Settings" | |||||
[connection signal="toggled" from="Background/MarginContainer/VBoxContainer/TabContainer/Game/BlockHighlight/CheckButton" to="." method="_on_block_highlighting_toggled"] | |||||
[connection signal="toggled" from="Background/MarginContainer/VBoxContainer/TabContainer/Game/Waila/CheckButton" to="." method="_on_enable_waila_toggled"] | |||||
[connection signal="toggled" from="Background/MarginContainer/VBoxContainer/TabContainer/Game/QuickslotsUI/CheckButton" to="." method="_on_quickslots_ui_toggled"] | |||||
[connection signal="toggled" from="Background/MarginContainer/VBoxContainer/TabContainer/Game/HeldBlockUI/CheckButton" to="." method="_on_held_block_ui_toggled"] | |||||
[connection signal="toggled" from="Background/MarginContainer/VBoxContainer/TabContainer/Game/ScreenshotIcon/CheckButton" to="." method="_on_screenshot_icon_button_toggled"] | |||||
[connection signal="toggled" from="Background/MarginContainer/VBoxContainer/TabContainer/Game/Autosaves/CheckButton" to="." method="_on_autosaves_button_toggled"] | |||||
[connection signal="value_changed" from="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/FOV/HSlider" to="." method="_on_fov_slider_changed"] | |||||
[connection signal="pressed" from="Background/MarginContainer/VBoxContainer/TabContainer/Graphics/CenterContainer/ApplyButton" to="." method="_on_graphics_apply_button_pressed"] | |||||
[connection signal="pressed" from="Background/BottomRow/CloseButton" to="." method="_on_close_button_pressed"] |
@ -0,0 +1,33 @@ | |||||
class_name BaseMenu | |||||
extends ColorRect | |||||
@export var animation_player: AnimationPlayer | |||||
var pause_menu: PauseMenu | |||||
func init() -> void: | |||||
reset_menu() | |||||
update_animation_tracks() | |||||
func close_menu() -> void: | |||||
animation_player.play("hide") | |||||
func open_menu() -> void: | |||||
animation_player.play("show") | |||||
func reset_menu() -> void: | |||||
animation_player.play("RESET") | |||||
## Update the animation tracks to account for the varying sizes of the menu container[br] | |||||
## Requires:[br] | |||||
## Track 1 - Must be for the content_container[br] | |||||
## First Property - Must be position[br] | |||||
## Second Property - Visibility | |||||
func update_animation_tracks() -> void: | |||||
var hide_animation: Animation = animation_player.get_animation("hide") | |||||
var show_animation: Animation = animation_player.get_animation("show") | |||||
hide_animation.track_set_key_value(0, 1, Vector2(-size.x, hide_animation.track_get_key_value(0, 1).y)) | |||||
show_animation.track_set_key_value(0, 0, Vector2(-size.x, show_animation.track_get_key_value(0, 0).y)) |
@ -0,0 +1 @@ | |||||
uid://c71f7fatmvsra |
@ -0,0 +1,152 @@ | |||||
[gd_scene load_steps=7 format=3 uid="uid://4itp2hjp14n2"] | |||||
[ext_resource type="Theme" uid="uid://b5q8b0l6qp1dt" path="res://resources/pause_menu_theme.tres" id="1_3sxei"] | |||||
[ext_resource type="Script" uid="uid://c71f7fatmvsra" path="res://scenes/ui/pause_menu/base_menu.gd" id="2_3sxei"] | |||||
[sub_resource type="Animation" id="Animation_vx2qe"] | |||||
length = 0.001 | |||||
tracks/0/type = "value" | |||||
tracks/0/imported = false | |||||
tracks/0/enabled = true | |||||
tracks/0/path = NodePath(".:position") | |||||
tracks/0/interp = 1 | |||||
tracks/0/loop_wrap = true | |||||
tracks/0/keys = { | |||||
"times": PackedFloat32Array(0), | |||||
"transitions": PackedFloat32Array(1), | |||||
"update": 0, | |||||
"values": [Vector2(-400, 0)] | |||||
} | |||||
tracks/1/type = "value" | |||||
tracks/1/imported = false | |||||
tracks/1/enabled = true | |||||
tracks/1/path = NodePath(".:visible") | |||||
tracks/1/interp = 1 | |||||
tracks/1/loop_wrap = true | |||||
tracks/1/keys = { | |||||
"times": PackedFloat32Array(0), | |||||
"transitions": PackedFloat32Array(1), | |||||
"update": 1, | |||||
"values": [false] | |||||
} | |||||
[sub_resource type="Animation" id="Animation_q12vw"] | |||||
resource_name = "hide" | |||||
length = 0.2 | |||||
step = 0.05 | |||||
tracks/0/type = "value" | |||||
tracks/0/imported = false | |||||
tracks/0/enabled = true | |||||
tracks/0/path = NodePath(".:position") | |||||
tracks/0/interp = 1 | |||||
tracks/0/loop_wrap = true | |||||
tracks/0/keys = { | |||||
"times": PackedFloat32Array(0, 0.2), | |||||
"transitions": PackedFloat32Array(1, 1), | |||||
"update": 0, | |||||
"values": [Vector2(0, 0), Vector2(-400, 0)] | |||||
} | |||||
tracks/1/type = "value" | |||||
tracks/1/imported = false | |||||
tracks/1/enabled = true | |||||
tracks/1/path = NodePath(".:visible") | |||||
tracks/1/interp = 1 | |||||
tracks/1/loop_wrap = true | |||||
tracks/1/keys = { | |||||
"times": PackedFloat32Array(0, 0.2), | |||||
"transitions": PackedFloat32Array(1, 1), | |||||
"update": 1, | |||||
"values": [true, false] | |||||
} | |||||
[sub_resource type="Animation" id="Animation_3mo8w"] | |||||
resource_name = "show" | |||||
length = 0.2 | |||||
step = 0.05 | |||||
tracks/0/type = "value" | |||||
tracks/0/imported = false | |||||
tracks/0/enabled = true | |||||
tracks/0/path = NodePath(".:position") | |||||
tracks/0/interp = 1 | |||||
tracks/0/loop_wrap = true | |||||
tracks/0/keys = { | |||||
"times": PackedFloat32Array(0, 0.2), | |||||
"transitions": PackedFloat32Array(1, 1), | |||||
"update": 0, | |||||
"values": [Vector2(-400, 0), Vector2(0, 0)] | |||||
} | |||||
tracks/1/type = "value" | |||||
tracks/1/imported = false | |||||
tracks/1/enabled = true | |||||
tracks/1/path = NodePath(".:visible") | |||||
tracks/1/interp = 1 | |||||
tracks/1/loop_wrap = true | |||||
tracks/1/keys = { | |||||
"times": PackedFloat32Array(0), | |||||
"transitions": PackedFloat32Array(1), | |||||
"update": 1, | |||||
"values": [true] | |||||
} | |||||
[sub_resource type="AnimationLibrary" id="AnimationLibrary_q12vw"] | |||||
_data = { | |||||
&"RESET": SubResource("Animation_vx2qe"), | |||||
&"hide": SubResource("Animation_q12vw"), | |||||
&"show": SubResource("Animation_3mo8w") | |||||
} | |||||
[node name="BaseMenu" type="ColorRect" node_paths=PackedStringArray("animation_player")] | |||||
custom_minimum_size = Vector2(400, 0) | |||||
anchors_preset = 9 | |||||
anchor_bottom = 1.0 | |||||
offset_left = -400.0 | |||||
grow_vertical = 2 | |||||
theme = ExtResource("1_3sxei") | |||||
color = Color(0.133333, 0.133333, 0.133333, 0.784314) | |||||
script = ExtResource("2_3sxei") | |||||
animation_player = NodePath("AnimationPlayer") | |||||
[node name="AnimationPlayer" type="AnimationPlayer" parent="."] | |||||
reset_on_save = false | |||||
libraries = { | |||||
&"": SubResource("AnimationLibrary_q12vw") | |||||
} | |||||
autoplay = "show" | |||||
[node name="MainContent" type="MarginContainer" parent="."] | |||||
layout_mode = 1 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
theme_override_constants/margin_left = 10 | |||||
theme_override_constants/margin_top = 10 | |||||
theme_override_constants/margin_right = 10 | |||||
theme_override_constants/margin_bottom = 10 | |||||
[node name="MenuContainer" type="VBoxContainer" parent="MainContent"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 4 | |||||
theme_override_constants/separation = 20 | |||||
[node name="Title" type="Label" parent="MainContent/MenuContainer"] | |||||
layout_mode = 2 | |||||
theme_type_variation = &"MenuTitle" | |||||
text = "Menu Title" | |||||
horizontal_alignment = 1 | |||||
vertical_alignment = 1 | |||||
[node name="BottomRow" type="MarginContainer" parent="."] | |||||
layout_mode = 1 | |||||
anchors_preset = 7 | |||||
anchor_left = 0.5 | |||||
anchor_top = 1.0 | |||||
anchor_right = 0.5 | |||||
anchor_bottom = 1.0 | |||||
offset_left = -82.5 | |||||
offset_top = -46.0 | |||||
offset_right = 82.5 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 0 | |||||
theme_override_constants/margin_bottom = 10 |
@ -0,0 +1,16 @@ | |||||
class_name PauseMenuMain | |||||
extends BaseMenu | |||||
# Signals | |||||
func _on_exit_game_button_pressed() -> void: | |||||
get_tree().quit() | |||||
func _on_resume_button_pressed() -> void: | |||||
close_menu() | |||||
func _on_saves_button_pressed() -> void: | |||||
pause_menu.open_menu.emit("SavesMenu") | |||||
func _on_settings_button_pressed() -> void: | |||||
pause_menu.open_menu.emit("SettingsMenu") |
@ -0,0 +1 @@ | |||||
uid://bwvwpiwhp52e |
@ -0,0 +1,36 @@ | |||||
[gd_scene load_steps=3 format=3 uid="uid://xy8pdtxcepqf"] | |||||
[ext_resource type="PackedScene" uid="uid://4itp2hjp14n2" path="res://scenes/ui/pause_menu/base_menu.tscn" id="1_6fgdx"] | |||||
[ext_resource type="Script" uid="uid://bwvwpiwhp52e" path="res://scenes/ui/pause_menu/main_menu.gd" id="2_4i143"] | |||||
[node name="MainMenu" instance=ExtResource("1_6fgdx")] | |||||
script = ExtResource("2_4i143") | |||||
[node name="Title" parent="MainContent/MenuContainer" index="0"] | |||||
text = "Paused" | |||||
[node name="ButtonsContainer" type="VBoxContainer" parent="MainContent/MenuContainer" index="1"] | |||||
layout_mode = 2 | |||||
size_flags_vertical = 6 | |||||
theme_override_constants/separation = 20 | |||||
[node name="ResumeButton" type="Button" parent="MainContent/MenuContainer/ButtonsContainer" index="0"] | |||||
layout_mode = 2 | |||||
text = "Resume" | |||||
[node name="SavesButton" type="Button" parent="MainContent/MenuContainer/ButtonsContainer" index="1"] | |||||
layout_mode = 2 | |||||
text = "Saves" | |||||
[node name="SettingsButton" type="Button" parent="MainContent/MenuContainer/ButtonsContainer" index="2"] | |||||
layout_mode = 2 | |||||
text = "Settings" | |||||
[node name="ExitGameButton" type="Button" parent="MainContent/MenuContainer/ButtonsContainer" index="3"] | |||||
layout_mode = 2 | |||||
text = "Exit Game" | |||||
[connection signal="pressed" from="MainContent/MenuContainer/ButtonsContainer/ResumeButton" to="." method="_on_resume_button_pressed"] | |||||
[connection signal="pressed" from="MainContent/MenuContainer/ButtonsContainer/SavesButton" to="." method="_on_saves_button_pressed"] | |||||
[connection signal="pressed" from="MainContent/MenuContainer/ButtonsContainer/SettingsButton" to="." method="_on_settings_button_pressed"] | |||||
[connection signal="pressed" from="MainContent/MenuContainer/ButtonsContainer/ExitGameButton" to="." method="_on_exit_game_button_pressed"] |
@ -0,0 +1,87 @@ | |||||
## Handle changing changing menus and running the show/hide animations for each menu. | |||||
## Each menu should extend BaseMenu | |||||
class_name PauseMenu | |||||
extends Panel | |||||
signal open_menu(menu_name: String) | |||||
@onready var menu_mapping: Dictionary[String, BaseMenu] = { | |||||
"MainMenu": $MainMenu, | |||||
"SettingsMenu": $SettingsMenu, | |||||
"SavesMenu": $SavesMenu, | |||||
} | |||||
var _active_menu: String = "MainMenu" | |||||
var _next_menu: String = "" | |||||
func _ready() -> void: | |||||
open_menu.connect(_on_change_menu) | |||||
for menu: BaseMenu in get_children(): | |||||
menu.animation_player.animation_finished.connect(_on_animation_finished) | |||||
menu.pause_menu = self | |||||
menu.init() | |||||
SaveGameManager.create_save.connect(_on_create_save) | |||||
SaveGameManager.load_save.connect(_on_load_save) | |||||
func _unhandled_input(event: InputEvent) -> void: | |||||
if event.is_action_pressed("ui_cancel") and !visible: | |||||
_open_pause_menu() | |||||
elif event.is_action_pressed("ui_cancel") and visible and _active_menu == "MainMenu": | |||||
menu_mapping["MainMenu"].animation_player.play("hide") | |||||
elif event.is_action_pressed("ui_cancel"): ## Always back out to the MainMenu - Future, maybe add _previous_menu to allow backing out to any menu | |||||
open_menu.emit("MainMenu") | |||||
## Start the `hide` animation for the current menu. | |||||
## The `show` animation will play after the `hide` has completed, from `_on_animation_finished()`. | |||||
func _change_menu(menu_name: String) -> void: | |||||
visible = true | |||||
_next_menu = menu_name | |||||
if _next_menu == "": | |||||
menu_mapping["MainMenu"].animation_player.play("hide") | |||||
else: | |||||
menu_mapping[_active_menu].animation_player.play("hide") | |||||
func _close_pause_menu() -> void: | |||||
visible = false | |||||
_next_menu = "" | |||||
Input.mouse_mode = Input.MOUSE_MODE_CAPTURED | |||||
SignalManager.resume_game.emit() | |||||
## Run the `show` animation for the next menu | |||||
## If there is no next menu, close the pause menu | |||||
func _handle_next_menu() -> void: | |||||
if _next_menu == "": | |||||
_active_menu = "MainMenu" | |||||
_close_pause_menu() | |||||
else: | |||||
_active_menu = _next_menu | |||||
_next_menu = "" | |||||
menu_mapping[_active_menu].animation_player.play("show") | |||||
func _open_pause_menu() -> void: | |||||
Input.mouse_mode = Input.MOUSE_MODE_VISIBLE | |||||
SignalManager.pause_game.emit() | |||||
menu_mapping["MainMenu"].animation_player.play("show") | |||||
## When the hide animation finished, start show `show` animation for the next menu | |||||
func _on_animation_finished(animation_name: String) -> void: | |||||
if animation_name == "hide": | |||||
_handle_next_menu() | |||||
func _on_change_menu(menu_name: String) -> void: | |||||
_change_menu(menu_name) | |||||
func _on_create_save(_save: String) -> void: | |||||
menu_mapping["SavesMenu"].reset_menu() | |||||
_close_pause_menu() | |||||
func _on_load_save(_save: String) -> void: | |||||
menu_mapping["SavesMenu"].reset_menu() | |||||
_close_pause_menu() |
@ -0,0 +1 @@ | |||||
uid://domfn2obgmavw |
@ -0,0 +1,37 @@ | |||||
[gd_scene load_steps=6 format=3 uid="uid://by0gd600mbcr5"] | |||||
[ext_resource type="Script" uid="uid://domfn2obgmavw" path="res://scenes/ui/pause_menu/pause_menu.gd" id="1_ugqbi"] | |||||
[ext_resource type="PackedScene" uid="uid://xy8pdtxcepqf" path="res://scenes/ui/pause_menu/main_menu.tscn" id="2_rv5mv"] | |||||
[ext_resource type="PackedScene" uid="uid://uwlutbmfp8dv" path="res://scenes/ui/pause_menu/settings_menu.tscn" id="3_rv5mv"] | |||||
[ext_resource type="PackedScene" uid="uid://dq83yv2um7sci" path="res://scenes/ui/pause_menu/saves_menu.tscn" id="4_rv5mv"] | |||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4xojl"] | |||||
bg_color = Color(0.176419, 0.176419, 0.176419, 0.462745) | |||||
[node name="PauseMenu" type="Panel"] | |||||
process_mode = 3 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
theme_override_styles/panel = SubResource("StyleBoxFlat_4xojl") | |||||
script = ExtResource("1_ugqbi") | |||||
[node name="MainMenu" parent="." instance=ExtResource("2_rv5mv")] | |||||
visible = false | |||||
layout_mode = 1 | |||||
offset_left = 0.0 | |||||
offset_right = 400.0 | |||||
[node name="SettingsMenu" parent="." instance=ExtResource("3_rv5mv")] | |||||
visible = false | |||||
layout_mode = 1 | |||||
offset_left = 0.0 | |||||
offset_right = 400.0 | |||||
[node name="SavesMenu" parent="." instance=ExtResource("4_rv5mv")] | |||||
visible = false | |||||
layout_mode = 1 | |||||
offset_left = 0.0 | |||||
offset_right = 450.0 |
@ -1,7 +1,7 @@ | |||||
[gd_scene load_steps=3 format=3 uid="uid://cyxieflejsggu"] | [gd_scene load_steps=3 format=3 uid="uid://cyxieflejsggu"] | ||||
[ext_resource type="Script" uid="uid://cqabj86bq8whn" path="res://scenes/ui/menus/saves_manager/save_files_list.gd" id="1_sh1p7"] | |||||
[ext_resource type="PackedScene" uid="uid://bb7poutsn4ex2" path="res://scenes/ui/menus/saves_manager/save_file.tscn" id="2_kb5u8"] | |||||
[ext_resource type="Script" uid="uid://cqabj86bq8whn" path="res://scenes/ui/pause_menu/saves_manager/save_files_list.gd" id="1_sh1p7"] | |||||
[ext_resource type="PackedScene" uid="uid://bb7poutsn4ex2" path="res://scenes/ui/pause_menu/saves_manager/save_file.tscn" id="2_kb5u8"] | |||||
[node name="SaveFilesList" type="VBoxContainer"] | [node name="SaveFilesList" type="VBoxContainer"] | ||||
clip_contents = true | clip_contents = true |
@ -0,0 +1 @@ | |||||
uid://di8dm3fdxfwo1 |
@ -0,0 +1,97 @@ | |||||
[gd_scene load_steps=8 format=3 uid="uid://dq83yv2um7sci"] | |||||
[ext_resource type="PackedScene" uid="uid://4itp2hjp14n2" path="res://scenes/ui/pause_menu/base_menu.tscn" id="1_i4hg7"] | |||||
[ext_resource type="Script" uid="uid://di8dm3fdxfwo1" path="res://scenes/ui/pause_menu/saves_menu.gd" id="2_q3hp2"] | |||||
[ext_resource type="PackedScene" uid="uid://cyxieflejsggu" path="res://scenes/ui/pause_menu/saves_manager/save_files_list.tscn" id="3_0ok72"] | |||||
[ext_resource type="Texture2D" uid="uid://ja8bc1h5x85o" path="res://assets/ui/save-normal.png" id="3_urnjr"] | |||||
[ext_resource type="Texture2D" uid="uid://crqgyft4gfilt" path="res://assets/ui/save-pressed.png" id="4_31dcc"] | |||||
[ext_resource type="PackedScene" uid="uid://bb7poutsn4ex2" path="res://scenes/ui/pause_menu/saves_manager/save_file.tscn" id="4_v5wg2"] | |||||
[ext_resource type="Texture2D" uid="uid://o3l0j53mgkan" path="res://assets/ui/save-hover.png" id="5_0ok72"] | |||||
[node name="SavesMenu" node_paths=PackedStringArray("show_save_ui_button", "new_save_ui", "save_name_input", "create_save_button", "create_save_cancel_button", "save_files_list_ui") instance=ExtResource("1_i4hg7")] | |||||
custom_minimum_size = Vector2(450, 0) | |||||
offset_left = -450.0 | |||||
script = ExtResource("2_q3hp2") | |||||
show_save_ui_button = NodePath("BottomRow/SaveButton") | |||||
new_save_ui = NodePath("NewSaveUI") | |||||
save_name_input = NodePath("NewSaveUI/MarginContainer/VBoxContainer/SaveNameInput") | |||||
create_save_button = NodePath("NewSaveUI/MarginContainer/VBoxContainer/SaveButton") | |||||
create_save_cancel_button = NodePath("NewSaveUI/MarginContainer/VBoxContainer/CancelButton") | |||||
save_files_list_ui = NodePath("MainContent/MenuContainer/ScrollContainer/SaveFilesList") | |||||
[node name="Title" parent="MainContent/MenuContainer" index="0"] | |||||
text = "Save/Load Game" | |||||
[node name="ScrollContainer" type="ScrollContainer" parent="MainContent/MenuContainer" index="1"] | |||||
custom_minimum_size = Vector2(0, 500) | |||||
layout_mode = 2 | |||||
horizontal_scroll_mode = 0 | |||||
[node name="SaveFilesList" parent="MainContent/MenuContainer/ScrollContainer" index="0" instance=ExtResource("3_0ok72")] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 6 | |||||
[node name="SaveFilePanel" parent="MainContent/MenuContainer/ScrollContainer/SaveFilesList" index="0" instance=ExtResource("4_v5wg2")] | |||||
layout_mode = 2 | |||||
[node name="SaveButton" type="TextureButton" parent="BottomRow" index="0"] | |||||
clip_contents = true | |||||
custom_minimum_size = Vector2(32, 32) | |||||
layout_mode = 2 | |||||
tooltip_text = "New Save" | |||||
texture_normal = ExtResource("3_urnjr") | |||||
texture_pressed = ExtResource("4_31dcc") | |||||
texture_hover = ExtResource("5_0ok72") | |||||
ignore_texture_size = true | |||||
stretch_mode = 5 | |||||
[node name="NewSaveUI" type="Panel" parent="." index="3"] | |||||
visible = false | |||||
custom_minimum_size = Vector2(450, 100) | |||||
layout_mode = 1 | |||||
anchors_preset = 15 | |||||
anchor_right = 1.0 | |||||
anchor_bottom = 1.0 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
[node name="MarginContainer" type="MarginContainer" parent="NewSaveUI" index="0"] | |||||
layout_mode = 1 | |||||
anchors_preset = 8 | |||||
anchor_left = 0.5 | |||||
anchor_top = 0.5 | |||||
anchor_right = 0.5 | |||||
anchor_bottom = 0.5 | |||||
offset_left = -205.0 | |||||
offset_top = -29.5 | |||||
offset_right = 205.0 | |||||
offset_bottom = 29.5 | |||||
grow_horizontal = 2 | |||||
grow_vertical = 2 | |||||
theme_override_constants/margin_left = 5 | |||||
theme_override_constants/margin_top = 5 | |||||
theme_override_constants/margin_right = 5 | |||||
theme_override_constants/margin_bottom = 5 | |||||
[node name="VBoxContainer" type="VBoxContainer" parent="NewSaveUI/MarginContainer" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 4 | |||||
size_flags_vertical = 4 | |||||
[node name="SaveNameLabel" type="Label" parent="NewSaveUI/MarginContainer/VBoxContainer" index="0"] | |||||
layout_mode = 2 | |||||
theme_override_font_sizes/font_size = 20 | |||||
text = "Create New Save" | |||||
[node name="SaveNameInput" type="LineEdit" parent="NewSaveUI/MarginContainer/VBoxContainer" index="1"] | |||||
custom_minimum_size = Vector2(400, 0) | |||||
layout_mode = 2 | |||||
placeholder_text = "New Save File Name" | |||||
[node name="SaveButton" type="Button" parent="NewSaveUI/MarginContainer/VBoxContainer" index="2"] | |||||
layout_mode = 2 | |||||
text = "Create Save" | |||||
[node name="CancelButton" type="Button" parent="NewSaveUI/MarginContainer/VBoxContainer" index="3"] | |||||
layout_mode = 2 | |||||
text = "Cancel" |
@ -0,0 +1 @@ | |||||
uid://ccei1q7fb022x |
@ -0,0 +1,230 @@ | |||||
[gd_scene load_steps=4 format=3 uid="uid://uwlutbmfp8dv"] | |||||
[ext_resource type="Script" uid="uid://ccei1q7fb022x" path="res://scenes/ui/pause_menu/settings_menu.gd" id="1_govsn"] | |||||
[ext_resource type="PackedScene" uid="uid://4itp2hjp14n2" path="res://scenes/ui/pause_menu/base_menu.tscn" id="1_oec81"] | |||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_830fb"] | |||||
content_margin_left = 10.0 | |||||
content_margin_top = 10.0 | |||||
content_margin_right = 10.0 | |||||
content_margin_bottom = 10.0 | |||||
bg_color = Color(0, 0, 0, 0.27451) | |||||
corner_radius_top_left = 2 | |||||
corner_radius_top_right = 2 | |||||
corner_radius_bottom_right = 2 | |||||
corner_radius_bottom_left = 2 | |||||
[node name="SettingsMenu" node_paths=PackedStringArray("autosaves_input", "block_highlight_input", "held_block_ui_input", "quick_slots_ui_input", "screenshot_icon_input", "waila_input", "resolution_input", "fullscreen_input", "vsync_input", "fov_slider", "fov_value_label") instance=ExtResource("1_oec81")] | |||||
script = ExtResource("1_govsn") | |||||
autosaves_input = NodePath("MainContent/MenuContainer/TabContainer/Game/Autosaves/CheckButton") | |||||
block_highlight_input = NodePath("MainContent/MenuContainer/TabContainer/Game/BlockHighlight/CheckButton") | |||||
held_block_ui_input = NodePath("MainContent/MenuContainer/TabContainer/Game/HeldBlockUI/CheckButton") | |||||
quick_slots_ui_input = NodePath("MainContent/MenuContainer/TabContainer/Game/QuickslotsUI/CheckButton") | |||||
screenshot_icon_input = NodePath("MainContent/MenuContainer/TabContainer/Game/ScreenshotIcon/CheckButton") | |||||
waila_input = NodePath("MainContent/MenuContainer/TabContainer/Game/Waila/CheckButton") | |||||
resolution_input = NodePath("MainContent/MenuContainer/TabContainer/Graphics/Resolution/OptionButton") | |||||
fullscreen_input = NodePath("MainContent/MenuContainer/TabContainer/Graphics/Fullscreen/CheckBox") | |||||
vsync_input = NodePath("MainContent/MenuContainer/TabContainer/Graphics/VSync/CheckBox") | |||||
fov_slider = NodePath("MainContent/MenuContainer/TabContainer/Graphics/FOV/HSlider") | |||||
fov_value_label = NodePath("MainContent/MenuContainer/TabContainer/Graphics/FOV/Value") | |||||
[node name="Title" parent="MainContent/MenuContainer" index="0"] | |||||
text = "Settings" | |||||
[node name="TabContainer" type="TabContainer" parent="MainContent/MenuContainer" index="1"] | |||||
layout_mode = 2 | |||||
theme_override_constants/side_margin = 0 | |||||
theme_override_styles/panel = SubResource("StyleBoxFlat_830fb") | |||||
current_tab = 0 | |||||
clip_tabs = false | |||||
[node name="Game" type="VBoxContainer" parent="MainContent/MenuContainer/TabContainer" index="1"] | |||||
layout_mode = 2 | |||||
metadata/_tab_index = 0 | |||||
[node name="BlockHighlight" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Game" index="0"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Game/BlockHighlight" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Enable Block Highlighting" | |||||
[node name="CheckButton" type="CheckButton" parent="MainContent/MenuContainer/TabContainer/Game/BlockHighlight" index="1"] | |||||
layout_mode = 2 | |||||
button_pressed = true | |||||
[node name="Waila" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Game" index="1"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Game/Waila" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Enable Waila" | |||||
[node name="CheckButton" type="CheckButton" parent="MainContent/MenuContainer/TabContainer/Game/Waila" index="1"] | |||||
layout_mode = 2 | |||||
button_pressed = true | |||||
[node name="QuickslotsUI" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Game" index="2"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Game/QuickslotsUI" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Enable Quickslots UI" | |||||
[node name="CheckButton" type="CheckButton" parent="MainContent/MenuContainer/TabContainer/Game/QuickslotsUI" index="1"] | |||||
layout_mode = 2 | |||||
button_pressed = true | |||||
[node name="HeldBlockUI" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Game" index="3"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Game/HeldBlockUI" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Enable Player Held Block" | |||||
[node name="CheckButton" type="CheckButton" parent="MainContent/MenuContainer/TabContainer/Game/HeldBlockUI" index="1"] | |||||
layout_mode = 2 | |||||
button_pressed = true | |||||
[node name="ScreenshotIcon" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Game" index="4"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Game/ScreenshotIcon" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
tooltip_text = "Enable/Disable the taking of a screenshot to utilize as the save icon." | |||||
mouse_filter = 1 | |||||
text = "Enable Save Screenshot" | |||||
[node name="CheckButton" type="CheckButton" parent="MainContent/MenuContainer/TabContainer/Game/ScreenshotIcon" index="1"] | |||||
layout_mode = 2 | |||||
tooltip_text = "Enable/Disable the taking of a screenshot to utilize as the save icon." | |||||
button_pressed = true | |||||
[node name="Autosaves" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Game" index="5"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Game/Autosaves" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
tooltip_text = "Enable/Disable the taking of a screenshot to utilize as the save icon." | |||||
mouse_filter = 1 | |||||
text = "Enable Autosaves" | |||||
[node name="CheckButton" type="CheckButton" parent="MainContent/MenuContainer/TabContainer/Game/Autosaves" index="1"] | |||||
layout_mode = 2 | |||||
tooltip_text = "Enable/Disable the taking of a screenshot to utilize as the save icon." | |||||
button_pressed = true | |||||
[node name="Graphics" type="VBoxContainer" parent="MainContent/MenuContainer/TabContainer" index="2"] | |||||
visible = false | |||||
layout_mode = 2 | |||||
metadata/_tab_index = 1 | |||||
[node name="Resolution" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Graphics" index="0"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Graphics/Resolution" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Resolution" | |||||
[node name="OptionButton" type="OptionButton" parent="MainContent/MenuContainer/TabContainer/Graphics/Resolution" index="1"] | |||||
layout_mode = 2 | |||||
selected = 0 | |||||
item_count = 6 | |||||
popup/item_0/text = "1280x720" | |||||
popup/item_0/id = 0 | |||||
popup/item_1/text = "1280x800" | |||||
popup/item_1/id = 4 | |||||
popup/item_2/text = "1920x1080" | |||||
popup/item_2/id = 1 | |||||
popup/item_3/text = "2560x1440" | |||||
popup/item_3/id = 2 | |||||
popup/item_4/text = "3440x1440" | |||||
popup/item_4/id = 3 | |||||
popup/item_5/text = "3840 x 2160" | |||||
popup/item_5/id = 5 | |||||
[node name="Fullscreen" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Graphics" index="1"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Graphics/Fullscreen" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "Fullscreen" | |||||
[node name="CheckBox" type="CheckBox" parent="MainContent/MenuContainer/TabContainer/Graphics/Fullscreen" index="1"] | |||||
layout_mode = 2 | |||||
[node name="VSync" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Graphics" index="2"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Graphics/VSync" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "VSync" | |||||
[node name="CheckBox" type="CheckBox" parent="MainContent/MenuContainer/TabContainer/Graphics/VSync" index="1"] | |||||
layout_mode = 2 | |||||
[node name="FOV" type="HBoxContainer" parent="MainContent/MenuContainer/TabContainer/Graphics" index="3"] | |||||
layout_mode = 2 | |||||
[node name="Label" type="Label" parent="MainContent/MenuContainer/TabContainer/Graphics/FOV" index="0"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
text = "FOV" | |||||
[node name="HSlider" type="HSlider" parent="MainContent/MenuContainer/TabContainer/Graphics/FOV" index="1"] | |||||
layout_mode = 2 | |||||
size_flags_horizontal = 3 | |||||
min_value = 60.0 | |||||
max_value = 120.0 | |||||
value = 75.0 | |||||
rounded = true | |||||
ticks_on_borders = true | |||||
[node name="Value" type="Label" parent="MainContent/MenuContainer/TabContainer/Graphics/FOV" index="2"] | |||||
layout_mode = 2 | |||||
text = "75" | |||||
[node name="HSeparator" type="HSeparator" parent="MainContent/MenuContainer/TabContainer/Graphics" index="4"] | |||||
layout_mode = 2 | |||||
theme_override_constants/separation = 20 | |||||
[node name="CenterContainer" type="CenterContainer" parent="MainContent/MenuContainer/TabContainer/Graphics" index="5"] | |||||
layout_mode = 2 | |||||
[node name="ApplyButton" type="Button" parent="MainContent/MenuContainer/TabContainer/Graphics/CenterContainer" index="0"] | |||||
layout_mode = 2 | |||||
text = "Apply/Save" | |||||
[node name="Audio" type="VBoxContainer" parent="MainContent/MenuContainer/TabContainer" index="3"] | |||||
visible = false | |||||
layout_mode = 2 | |||||
metadata/_tab_index = 2 | |||||
[node name="Inputs" type="VBoxContainer" parent="MainContent/MenuContainer/TabContainer" index="4"] | |||||
visible = false | |||||
layout_mode = 2 | |||||
metadata/_tab_index = 3 | |||||
[node name="CloseButton" type="Button" parent="BottomRow" index="0"] | |||||
custom_minimum_size = Vector2(141, 36) | |||||
layout_mode = 2 | |||||
text = "Close Settings" | |||||
[connection signal="toggled" from="MainContent/MenuContainer/TabContainer/Game/BlockHighlight/CheckButton" to="." method="_on_block_highlighting_toggled"] | |||||
[connection signal="toggled" from="MainContent/MenuContainer/TabContainer/Game/Waila/CheckButton" to="." method="_on_enable_waila_toggled"] | |||||
[connection signal="toggled" from="MainContent/MenuContainer/TabContainer/Game/QuickslotsUI/CheckButton" to="." method="_on_quickslots_ui_toggled"] | |||||
[connection signal="toggled" from="MainContent/MenuContainer/TabContainer/Game/HeldBlockUI/CheckButton" to="." method="_on_held_block_ui_toggled"] | |||||
[connection signal="toggled" from="MainContent/MenuContainer/TabContainer/Game/ScreenshotIcon/CheckButton" to="." method="_on_screenshot_icon_button_toggled"] | |||||
[connection signal="toggled" from="MainContent/MenuContainer/TabContainer/Game/Autosaves/CheckButton" to="." method="_on_autosaves_button_toggled"] | |||||
[connection signal="value_changed" from="MainContent/MenuContainer/TabContainer/Graphics/FOV/HSlider" to="." method="_on_fov_slider_changed"] | |||||
[connection signal="pressed" from="MainContent/MenuContainer/TabContainer/Graphics/CenterContainer/ApplyButton" to="." method="_on_graphics_apply_button_pressed"] | |||||
[connection signal="pressed" from="BottomRow/CloseButton" to="." method="_on_close_button_pressed"] |