1 using System.Collections;
3 using UnityEngine.Serialization;
11 [FormerlySerializedAs(
"duration")]
public float Duration = 2.0f;
12 private TextMesh textMesh;
17 textMesh = GetComponent<TextMesh>();
18 StartCoroutine(
"FadeOut");
24 var initialColor = textMesh.color;
25 while (textMesh.color.a > 0.001f)
27 var color = textMesh.color;
28 var target =
new Color(color.r, color.g, color.b, 0);
29 textMesh.color = Color.Lerp(initialColor, target, 1 - t / Duration);