8 [Script(ScriptRole.Client)]
11 public float FadeSmoothingFactor;
14 CanvasGroup _canvasGroup;
22 _canvasGroup = GetComponent<CanvasGroup>();
23 _textElement = GetComponentInChildren<Text>();
29 public static void Exclaim(
string message,
float duration = 3.0f)
31 _instance._textElement.text = message;
32 _instance._visible =
true;
33 _instance._disappearTime = Time.time + duration;
40 _canvasGroup.alpha = Mathf.Lerp(_canvasGroup.alpha, 1, Time.deltaTime * FadeSmoothingFactor);
42 if (Time.time > _disappearTime)
46 _canvasGroup.alpha = Mathf.Lerp(_canvasGroup.alpha, 0, Time.deltaTime * FadeSmoothingFactor);
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...