added brightness slider

This commit is contained in:
KingGurke 2023-10-02 19:26:53 +02:00
parent abd25a59a7
commit 299d5fe09d
9 changed files with 72 additions and 9 deletions

View file

@ -1,5 +1,13 @@
extends Control
@export var first_selection: Control
var last_menu: Control
# Called when the node enters the scene tree for the first time.
func _ready():
first_selection.grab_focus()
func _on_back_button_pressed():
get_parent().get_child(0).show()
last_menu.show()
queue_free()