Skip to content

Instantly share code, notes, and snippets.

@jweimann
Created December 29, 2016 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jweimann/d477d4d29cbfc0c6c7176a9c047008bd to your computer and use it in GitHub Desktop.
Save jweimann/d477d4d29cbfc0c6c7176a9c047008bd to your computer and use it in GitHub Desktop.
using UnityEngine;
using UnityEngine.UI;
public class HPBar : MonoBehaviour
{
private Slider _slider;
private void Start()
{
_slider = GetComponentInChildren<Slider>();
GetComponentInParent<NPC>().OnHPPctChanged += HandleHPPctChanged;
}
private void HandleHPPctChanged(float pct)
{
_slider.value = pct;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment