25 lines
530 B
C#
25 lines
530 B
C#
|
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);
|
||
|
}
|
||
|
}
|