示例#1
0
 public bool CastRay(RaycastInput input, out RaycastHit closestHit) => QueryWrappers.RayCast(ref this, input, out closestHit);
示例#2
0
 public bool CastRay(RaycastInput input, ref NativeList <RaycastHit> allHits) => QueryWrappers.RayCast(ref this, input, ref allHits);
示例#3
0
 // Cast a ray in the world.
 public bool CastRay(RaycastInput input) => QueryWrappers.RayCast(ref this, input);