mirror of
https://github.com/hobbesjaap/wellbeingapp.git
synced 2024-11-13 22:22:58 +00:00
31 lines
755 B
GDScript3
31 lines
755 B
GDScript3
|
extends Node
|
||
|
|
||
|
|
||
|
@onready var node_variables = get_node("/root/NodeVariables")
|
||
|
@onready var user_values = get_node("/root/UserValues")
|
||
|
|
||
|
|
||
|
func _ready():
|
||
|
pass
|
||
|
|
||
|
|
||
|
func show_start_menu():
|
||
|
node_variables.main_screen.visible = true
|
||
|
node_variables.start_menu.visible = true
|
||
|
node_variables.user_menu.visible = false
|
||
|
node_variables.daily_prompts.visible = false
|
||
|
|
||
|
|
||
|
func show_user_menu():
|
||
|
node_variables.main_screen.visible = true
|
||
|
node_variables.start_menu.visible = false
|
||
|
node_variables.user_menu.visible = true
|
||
|
node_variables.daily_prompts.visible = false
|
||
|
|
||
|
|
||
|
func show_daily_prompts():
|
||
|
node_variables.main_screen.visible = true
|
||
|
node_variables.start_menu.visible = false
|
||
|
node_variables.user_menu.visible = false
|
||
|
node_variables.daily_prompts.visible = true
|