Ejemplo n.º 1
0
 public static bool QueryBoolOr(this GameObject go, string queryName)
 {
     return(Queribus.Or(queryName, go));
 }
Ejemplo n.º 2
0
 public static float QueryFloatMax(this MonoBehaviour mb, string queryName)
 {
     return(Queribus.MaxFloat(queryName, mb.gameObject));
 }
Ejemplo n.º 3
0
 public static T QueryVote <T>(this MonoBehaviour mb, string queryName)
 {
     return(Queribus.Vote <T>(queryName, mb.gameObject));
 }
Ejemplo n.º 4
0
 public static int QueryIntMax(this MonoBehaviour mb, string queryName)
 {
     return(Queribus.MaxInt(queryName, mb.gameObject));
 }
Ejemplo n.º 5
0
 public static bool QueryBoolAnd(this MonoBehaviour mb, string queryName)
 {
     return(Queribus.And(queryName, mb.gameObject));
 }
Ejemplo n.º 6
0
 public static T QueryVote <T>(this GameObject go, string queryName)
 {
     return(Queribus.Vote <T>(queryName, go));
 }
Ejemplo n.º 7
0
 public static float QueryFloatSum(this GameObject go, string queryName)
 {
     return(Queribus.SumFloat(queryName, go));
 }
Ejemplo n.º 8
0
 public static int QueryIntSum(this GameObject go, string queryName)
 {
     return(Queribus.SumInt(queryName, go));
 }