8 [Script(ScriptRole.View)]
29 float _displayedValue = 1;
32 protected override void Awake()
37 protected override void OnSpawn()
41 _fill = _guiObject.transform.FindChild(
"fill").GetComponent<Image>();
45 protected override void Update()
49 _displayedValue = Mathf.Lerp(_displayedValue, Value, Time.deltaTime * EaseFactor);
50 Color color = ColorRamp.Evaluate(_displayedValue);
53 _fill.fillAmount = _displayedValue;
57 protected override void OnDestroy()
63 if (_guiObject != null)
Gradient ColorRamp
A Gradient sampled from 0 to 1 use to color the health bar. eg, a red to green fade for health bars...
float Value
A value between 0 and 1 at which this bar is filled.
float FillAlpha
The Alpha value of the bar. Will overwrite any alpha values in the ColoRamp.
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
float EaseFactor
The factor at which the bar's visual representation corrects to the actuall value (makes it a smooth ...
bool IsVisible
Gets a value indicating whether this sticker is visible.
A Sticker for showing health bars.