AR + GPS Location  3.0.0
All Classes Namespaces Functions Variables Properties Events Pages
Misc.cs
1 using System.Collections.Generic;
2 using UnityEngine;
3 
4 namespace ARLocation.Utils
5 {
6  public class Misc
7  {
8  public static bool IsARDevice()
9  {
10  return (
11  Application.platform == RuntimePlatform.Android ||
12  Application.platform == RuntimePlatform.IPhonePlayer
13  );
14  }
15 
16  public static float FloatListAverage(List<float> list)
17  {
18  var average = 0.0f;
19 
20  foreach (var value in list)
21  {
22  average += value;
23  }
24 
25  return average / list.Count;
26 
27  }
28 
29  public static float GetNormalizedDegrees(float value)
30  {
31  if (value < 0)
32  {
33  return (360 + (value % 360));
34  }
35 
36  return value % 360;
37  }
38 
39  public static T FindAndGetComponent<T>(string name)
40  {
41  var gameObject = GameObject.Find(name);
42 
43  if (gameObject == null)
44  {
45  return default(T);
46  }
47 
48  return gameObject.GetComponent<T>();
49  }
50 
51  public static T FindAndGetComponentAndLogError<T>(string name, string message)
52  {
53  var result = FindAndGetComponent<T>(name);
54 
55  if (EqualityComparer<T>.Default.Equals(result, default(T)))
56  {
57  Debug.LogError(message);
58  }
59 
60  return result;
61  }
62 
63  public static GameObject FindAndLogError(string name, string message)
64  {
65  var go = GameObject.Find(name);
66 
67  if (go == null)
68  {
69  Debug.LogError(message);
70  }
71 
72  return go;
73  }
74 
75  public static Spline BuildSpline(SplineType type, Vector3[] points, int n, float alpha)
76  {
77  if (type == SplineType.CatmullromSpline)
78  {
79  return new CatmullRomSpline(points, n, alpha);
80  }
81  else
82  {
83  return new LinearSpline(points);
84  }
85  }
86 
87  public static void SetActiveOnAllChildren(GameObject go, bool value)
88  {
89  foreach (Transform child in go.transform)
90  {
91  child.gameObject.SetActive(value);
92  }
93  }
94 
95  public static void SetGameObjectVisible(GameObject go, bool value)
96  {
97  var meshRenderer = go.GetComponent<MeshRenderer>();
98  var skinnedMeshRenderer = go.GetComponent<SkinnedMeshRenderer>();
99 
100  if (meshRenderer)
101  {
102  meshRenderer.enabled = value;
103  }
104 
105  if (skinnedMeshRenderer)
106  {
107  skinnedMeshRenderer.enabled = value;
108  }
109 
110  SetActiveOnAllChildren(go, value);
111  }
112 
113  public static void HideGameObject(GameObject go)
114  {
115  SetGameObjectVisible(go, false);
116  }
117 
118  public static void ShowGameObject(GameObject go)
119  {
120  SetGameObjectVisible(go, true);
121  }
122  }
123 }
ARLocation.Utils.Misc
Definition: Misc.cs:7
ARLocation.CatmullRomSpline
A (open-ended) catmull-rom spline, which interpolates a set points by joining catmull-rom curves toge...
Definition: CatmullRomSpline.cs:11
ARLocation.Utils
Definition: CreatePointOfInterestTextMeshes.cs:9
ARLocation.Spline
Definition: Spline.cs:13
ARLocation.LinearSpline
Definition: LinearSpline.cs:6