2022-07-31 05:27:58 +00:00
|
|
|
extends Node2D
|
|
|
|
|
|
|
|
|
2022-08-03 01:01:10 +00:00
|
|
|
onready var user_info = get_node("/root/UserValues")
|
2022-08-07 01:08:10 +00:00
|
|
|
onready var program_info = get_node("/root/ProgramValues")
|
2022-07-31 05:27:58 +00:00
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready():
|
2022-08-08 08:06:40 +00:00
|
|
|
pass
|
2022-07-31 05:27:58 +00:00
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
2022-08-08 06:42:26 +00:00
|
|
|
func _process(_delta):
|
|
|
|
$welcome_title.text = "Good morning " + user_info.user_first_name + "!"
|
2022-07-31 05:27:58 +00:00
|
|
|
# pass
|