Les Icônes se mettent correctement à jour durant la partie. Update de BaseMonoBehaviour, on peux maintenant ajouter une couleur a Info().

This commit is contained in:
mrtoine 2025-10-13 10:15:54 +02:00
parent aac376670c
commit 2b5a227237
10 changed files with 142 additions and 1163 deletions

View file

@ -94,7 +94,6 @@ namespace GameUI.Runtime
void ConfigureUIForQuestState(QuestStateEnum state)
{
Info($"<color=orange>Etat de la quête : {state}</color>");
switch (state)
{
case QuestStateEnum.Disponible:
@ -139,7 +138,6 @@ namespace GameUI.Runtime
quest = FindMatchingActiveQuest(quest);
QuestManager.Instance.CurrentQuest = quest;
Info($"<color=green><InfoQuestPanel.cs:143></color><color=orange>{quest.Name}</color>");
UpdateQuestInfoDisplay(quest);
ConfigureUIForQuestState(quest.State);
}