Files
pgs/Assets/Scripts/HPBarController.cs

21 lines
437 B
C#
Raw Permalink Normal View History

2026-02-21 16:58:22 -08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class HPBarController : MonoBehaviour
{
[SerializeField] private GameObject hpBarFront;
public void ShowHP(float ratio) {
hpBarFront.transform.localScale = new Vector3(
ratio,
hpBarFront.transform.localScale.y,
hpBarFront.transform.localScale.z);
}
void Start()
{
}
}