mirror of
https://github.com/hobbesjaap/wellbeingapp.git
synced 2024-11-08 11:42:59 +00:00
31 lines
753 B
GDScript
31 lines
753 B
GDScript
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
|