Liberi
An exergame built for kids with CP!
MeterSticker.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 
8 [Script(ScriptRole.View)]
9 public class MeterSticker : Sticker
10 {
14  public float Value = 1;
18  public Gradient ColorRamp;
22  public float EaseFactor = 10;
26  [Range(0, 1)]
27  public float FillAlpha;
28 
29  float _displayedValue = 1;
30  Image _fill;
31 
32  protected override void Awake()
33  {
34  base.Awake();
35  }
36 
37  protected override void OnSpawn()
38  {
39  base.OnSpawn();
40 
41  _fill = _guiObject.transform.FindChild("fill").GetComponent<Image>();
42  _guiObject.SetActive(IsVisible);
43  }
44 
45  protected override void Update()
46  {
47  base.Update();
48 
49  _displayedValue = Mathf.Lerp(_displayedValue, Value, Time.deltaTime * EaseFactor);
50  Color color = ColorRamp.Evaluate(_displayedValue);
51  color.a = FillAlpha;
52  _fill.color = color;
53  _fill.fillAmount = _displayedValue;
54  _guiObject.SetActive(IsVisible);
55  }
56 
57  protected override void OnDestroy()
58  {
59  base.OnDestroy();
60 
61  // Check if the GUI Object is null before destroying it.
62  // In the case of Scene unloading, the GUI Object can actually be destroyed before it's owner.
63  if (_guiObject != null)
64  Destroy(_guiObject);
65  }
66 }
Gradient ColorRamp
A Gradient sampled from 0 to 1 use to color the health bar. eg, a red to green fade for health bars...
Definition: MeterSticker.cs:18
float Value
A value between 0 and 1 at which this bar is filled.
Definition: MeterSticker.cs:14
float FillAlpha
The Alpha value of the bar. Will overwrite any alpha values in the ColoRamp.
Definition: MeterSticker.cs:27
The Base Class for Stickers. Handles the positioning, enabled/disabled state, and registration with t...
Definition: Sticker.cs:10
float EaseFactor
The factor at which the bar's visual representation corrects to the actuall value (makes it a smooth ...
Definition: MeterSticker.cs:22
bool IsVisible
Gets a value indicating whether this sticker is visible.
Definition: Sticker.cs:49
A Sticker for showing health bars.
Definition: MeterSticker.cs:9