Exemplo n.º 1
0
 public bool CastRay(RaycastInput input, out RaycastHit closestHit) => QueryWrappers.RayCast(ref this, input, out closestHit);
Exemplo n.º 2
0
 public bool CastRay(RaycastInput input, ref NativeList <RaycastHit> allHits) => QueryWrappers.RayCast(ref this, input, ref allHits);
Exemplo n.º 3
0
 // Cast ray
 public bool CastRay(RaycastInput input) => QueryWrappers.RayCast(ref this, input);