More UI work

This commit is contained in:
2025-07-31 20:01:51 -04:00
parent 38a7ed85b0
commit 697677cf86
19 changed files with 357 additions and 84 deletions

13
profile_popup.gd Normal file
View File

@@ -0,0 +1,13 @@
extends Control
@onready var name_label = %NameLabel
@onready var level_label = %LevelLabel
@onready var class_label = %ClassLabel
@onready var activity_label = %ActivityLabel
func setup(new_name : String, level : int, clss : String, activity : String) -> void:
name_label.text = new_name
level_label.text = "Lv " + str(level)
class_label.text = clss
activity_label.text = activity