Scriptum/Assets/Scripts/HealthBar.cs

33 lines
727 B
C#
Raw Normal View History

2022-06-12 20:14:11 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class HealthBar : MonoBehaviour
{
public Slider slider;
public float maxHealth;
public float health;
2022-06-12 20:14:11 +02:00
public void SetMaxHealth(float health)
{
maxHealth = PlayerPrefs.GetFloat("maxHealth");
slider.maxValue = maxHealth;
2022-06-12 20:14:11 +02:00
}
//public void SetHealth(float health)
//{
// slider.value = health;
//}
void Update()
2022-06-12 20:14:11 +02:00
{
maxHealth = PlayerPrefs.GetFloat("maxHealth");
health = PlayerPrefs.GetFloat("health");
slider.maxValue = maxHealth;
2022-06-12 20:14:11 +02:00
slider.value = health;
//SetExp(exp);
2022-06-12 20:14:11 +02:00
}
}