Class QueryWrappers
Inheritance
System.Object
QueryWrappers
Syntax
public static class QueryWrappers
Methods
Declaration
public static bool CalculateDistance<T>(ref T target, ColliderDistanceInput input)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool CalculateDistance<T>(ref T target, ColliderDistanceInput input, ref NativeList<DistanceHit> allHits)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool CalculateDistance<T>(ref T target, ColliderDistanceInput input, out DistanceHit result)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool CalculateDistance<T>(ref T target, PointDistanceInput input)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool CalculateDistance<T>(ref T target, PointDistanceInput input, ref NativeList<DistanceHit> allHits)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool CalculateDistance<T>(ref T target, PointDistanceInput input, out DistanceHit result)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool ColliderCast<T>(ref T target, ColliderCastInput input)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool ColliderCast<T>(ref T target, ColliderCastInput input, ref NativeList<ColliderCastHit> allHits)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool ColliderCast<T>(ref T target, ColliderCastInput input, out ColliderCastHit result)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool RayCast<T>(ref T target, RaycastInput input)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool RayCast<T>(ref T target, RaycastInput input, ref NativeList<RaycastHit> allHits)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
Declaration
public static bool RayCast<T>(ref T target, RaycastInput input, out RaycastHit closestHit)
where T : struct, ICollidable
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters