Ejemplo n.º 1
0
 public void RayCast(Func <RayCastInput, int, float> callback, ref RayCastInput input)
 {
     _quadTree.RayCast(TransformRayCallback(callback), ref input);
 }
Ejemplo n.º 2
0
 public void RayCast(BroadPhaseRayCastCallback callback, ref RayCastInput input)
 {
     _quadTree.RayCast(TransformRayCallback(callback), ref input);
 }