AR + GPS Location  3.0.0
All Classes Namespaces Functions Variables Properties Events Pages
FadeOutTextMesh.cs
1 using System.Collections;
2 using UnityEngine;
3 using UnityEngine.Serialization;
4 
5 namespace ARLocation.Utils
6 {
7 
8  public class FadeOutTextMesh : MonoBehaviour
9  {
10 
11  [FormerlySerializedAs("duration")] public float Duration = 2.0f;
12  private TextMesh textMesh;
13 
14  // Use this for initialization
15  void Start()
16  {
17  textMesh = GetComponent<TextMesh>();
18  StartCoroutine("FadeOut");
19  }
20 
21  IEnumerator FadeOut()
22  {
23  var t = Duration;
24  var initialColor = textMesh.color;
25  while (textMesh.color.a > 0.001f)
26  {
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);
30  t -= Time.deltaTime;
31  yield return null;
32  }
33  }
34  }
35 }
ARLocation.Utils.FadeOutTextMesh
Definition: FadeOutTextMesh.cs:9
ARLocation.Utils
Definition: CreatePointOfInterestTextMeshes.cs:9