diff --git a/Assets/Scripts/Drag&Drop/GameObjectPlacementButton.cs b/Assets/Scripts/Drag&Drop/GameObjectPlacementButton.cs index d75de55..ee12ca9 100644 --- a/Assets/Scripts/Drag&Drop/GameObjectPlacementButton.cs +++ b/Assets/Scripts/Drag&Drop/GameObjectPlacementButton.cs @@ -86,6 +86,7 @@ public class GameObjectPlacementButton : UnitPlacementButton public override void OnPointerEnter(PointerEventData eventData) { Ally allyObj = _prefab.GetComponent(); + Debug.Log("For " + _unitCardInformation.name + ": " + allyObj.Hp); TooltipManager.Instance.ShowTooltip(_unitCardInformation, allyObj.Hp.ToString(), allyObj.AttackDamage.ToString(), allyObj.AttackInterval.ToString()); }