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:
parent
aac376670c
commit
2b5a227237
10 changed files with 142 additions and 1163 deletions
|
|
@ -60,7 +60,7 @@ namespace TestFacts.Runtime
|
|||
{
|
||||
foreach (var fact in GetAllFacts())
|
||||
{
|
||||
Info($"Fact[{fact.Key}] = {fact.Value}");
|
||||
Info($"Fact[{fact.Key}] = {fact.Value}", Color.aliceBlue);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ namespace TestFacts.Runtime
|
|||
{
|
||||
PlayerClass profile = GetFact<PlayerClass>(GameManager.Instance.Profile);
|
||||
profile.Money = 99999;
|
||||
Info("➕99999 Gold added");
|
||||
Info("➕99999 Gold added", Color.green);
|
||||
SaveFacts();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue