Exemplo n.º 1
0
 public GameObject[] FindAllWithTag(string tag)
 {
     GameObject[] res;
     res = tags.FindAllWithTag(tag, staticObjects);
     if (res == null)
     {
         res = tags.FindAllWithTag(tag, objects);
     }
     return(res);
 }
Exemplo n.º 2
0
 public static Timer[] FindAllWithTag(string tag)
 {
     return(tags.FindAllWithTag(tag, timers));
 }
Exemplo n.º 3
0
 public UIElement[] FindAllWithTag(string tag)
 {
     return(tags.FindAllWithTag(tag, elements));
 }