Player can take quests, Adventurers in progress.

This commit is contained in:
2025-08-06 22:31:36 -04:00
parent d705ed0496
commit 6bfbd4b70c
15 changed files with 175 additions and 16 deletions

View File

@@ -16,7 +16,7 @@ func _process(delta: float) -> void:
func add_quest_progress_bar(quest : Quest) -> void:
var qpb : QuestProgressBar = quest_progress_bar_template.instantiate()
qpb.setup(quest)
%QuestProgressList/VBoxContainer.add_child(qpb)
%QuestList.add_child(qpb)
#TODO: Change the hero portrait to match
if quest.steps > 1:
for i in range(quest.steps-1):