Created
December 29, 2016 05:37
-
-
Save jweimann/d477d4d29cbfc0c6c7176a9c047008bd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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