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