_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/snailFactory/SuccessfulCard.cs

25 lines
530 B
C#
Raw Normal View History

2024-12-08 20:16:04 +08:00
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
using Vector3 = UnityEngine.Vector3;
public class SuccessfulCard : MonoBehaviour
{
// Start is called before the first frame update
public Image HpFill;
public FactoryItem FactoryItem;
public Text Hptext;
void Start()
{
Hptext.text = "HP 90/103";
}
// Update is called once per frame
void Update()
{
this.transform.localScale = new Vector3(1, 1, 1);
}
}