Debug log

This commit is contained in:
Ader Alisma 01 2025-01-05 14:49:47 -05:00
parent 458da2371d
commit dacd0f6b3c

View File

@ -86,6 +86,7 @@ public class GameObjectPlacementButton : UnitPlacementButton
public override void OnPointerEnter(PointerEventData eventData)
{
Ally allyObj = _prefab.GetComponent<Ally>();
Debug.Log("For " + _unitCardInformation.name + ": " + allyObj.Hp);
TooltipManager.Instance.ShowTooltip(_unitCardInformation, allyObj.Hp.ToString(), allyObj.AttackDamage.ToString(), allyObj.AttackInterval.ToString());
}