コード例 #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
ファイル: Timers.cs プロジェクト: ocdy1001/MonogameCore
 public static Timer[] FindAllWithTag(string tag)
 {
     return(tags.FindAllWithTag(tag, timers));
 }
コード例 #3
0
 public UIElement[] FindAllWithTag(string tag)
 {
     return(tags.FindAllWithTag(tag, elements));
 }