This repository has been archived on 2024-08-28. You can view files and clone it, but cannot push or open issues or pull requests.
gmtk-2024/ui/settings.gd

11 lines
285 B
GDScript3
Raw Normal View History

2024-08-19 02:16:36 +00:00
extends ColorRect
@onready var bar_option = $Bars/Select
func _ready() -> void:
bar_option.selected = ConfigManager.get_setting("bars")
bar_option.item_selected.connect(change_bar_selection)
func change_bar_selection(index: int) -> void:
ConfigManager.set_setting("bars", index)