Exemplo n.º 1
0
 public void RayCast(Func <RayCastInput, int, float> callback, ref RayCastInput input)
 {
     QuadTree.RayCast(TransformRayCallback(callback), ref input);
 }
Exemplo n.º 2
0
 public void RayCast(Func <RayCastInput, FixtureProxy, float> callback, ref RayCastInput input, Category collisionCategory = Category.All)
 {
     _quadTree.RayCast(TransformRayCallback(callback), ref input, collisionCategory);
 }
Exemplo n.º 3
0
 public void RayCast(BroadPhaseRayCastCallback callback, ref RayCastInput input)
 {
     _quadTree.RayCast(TransformRayCallback(callback), ref input);
 }