forked from Shardstone/trail-into-darkness
Added full cycle, now the gui shows the proper party data
This commit is contained in:
14
Assets/Code/GameState/UI/PartyMemberSlot.cs
Normal file
14
Assets/Code/GameState/UI/PartyMemberSlot.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using TMPro;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
namespace Nox.Game.UI {
|
||||
public class PartyMemberSlot : MonoBehaviour {
|
||||
public Image portrait;
|
||||
public Image healthBar;
|
||||
public Image manaBar;
|
||||
public TextMeshProUGUI nameText;
|
||||
public TextMeshProUGUI healthText;
|
||||
public TextMeshProUGUI manaText;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user