Liberi
An exergame built for kids with CP!
ExclamationBar.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 
8 [Script(ScriptRole.Client)]
9 public class ExclamationBar : MonoBehaviour
10 {
11  public float FadeSmoothingFactor;
12 
13  static ExclamationBar _instance;
14  CanvasGroup _canvasGroup;
15  Text _textElement;
16  bool _visible;
17  float _disappearTime;
18 
19  void Awake()
20  {
21  _instance = this;
22  _canvasGroup = GetComponent<CanvasGroup>();
23  _textElement = GetComponentInChildren<Text>();
24  }
25 
29  public static void Exclaim(string message, float duration = 3.0f)
30  {
31  _instance._textElement.text = message;
32  _instance._visible = true;
33  _instance._disappearTime = Time.time + duration;
34  }
35 
36  void Update()
37  {
38  if (_visible)
39  {
40  _canvasGroup.alpha = Mathf.Lerp(_canvasGroup.alpha, 1, Time.deltaTime * FadeSmoothingFactor);
41 
42  if (Time.time > _disappearTime)
43  _visible = false;
44  }
45  else
46  _canvasGroup.alpha = Mathf.Lerp(_canvasGroup.alpha, 0, Time.deltaTime * FadeSmoothingFactor);
47  }
48 }
static void Exclaim(string message, float duration=3.0f)
Displays the message for duration seconds, fading it in and out.
A GUI Object that displays various messages in a faded bar accross the centre of the players screen...