Exemplo n.º 1
0
 public static CollisionResult With(string[] types, ICollider collider )
 {
     return WithAtPos (types, collider, collider.GetPosition().x, collider.GetPosition().y);
 }
Exemplo n.º 2
0
 public static CollisionResult With(string type, ICollider collider )
 {
     return WithAtPos (new string[] {type}, collider, collider.GetPosition().x, collider.GetPosition().y);
 }