20 lines
350 B
C#
Executable File
20 lines
350 B
C#
Executable File
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class healthBar : MonoBehaviour{
|
|
|
|
public Slider slider;
|
|
|
|
|
|
public void SetMaxHealth(int health){
|
|
slider.maxValue = health;
|
|
slider.value = health;
|
|
}
|
|
public void SetHealth(int health){
|
|
slider.value = health;
|
|
}
|
|
|
|
}
|