mtd/Scripts/options_menu.gd

21 lines
484 B
GDScript3
Raw Normal View History

extends Control
class_name OptionsMenu
2023-11-19 18:47:52 +11:00
@export var gameplay : GameplayOptionsMenu
@export var graphics : GraphicsOptionsMenu
@export var keybinds : KeybindsOptionsMenu
func _on_cancel_pressed() -> void:
queue_free()
func _on_confirm_pressed() -> void:
2023-11-19 18:47:52 +11:00
gameplay.save()
graphics.save()
Data.graphics.apply_graphical_settings(get_viewport())
Data.graphics.save_profile_to_disk()
Data.preferences.save_profile_to_disk()
Data.player_keymap.save_profile_to_disk()
queue_free()