Interface IAspectQueryable
Interface for objects that can be hit by aspect queries.
Assembly: solution.dll
Syntax
public interface IAspectQueryable
Methods
Name |
Description |
CalculateDistance(in ColliderAspect, float, ref NativeList<DistanceHit>, QueryInteraction)
|
Calculates the distance from the collider aspect to this IAspectQueryable.
|
CalculateDistance(in ColliderAspect, float, out DistanceHit, QueryInteraction)
|
Calculates the distance from the collider aspect to this IAspectQueryable.
|
CalculateDistance(in ColliderAspect, float, QueryInteraction)
|
Calculates the distance from the collider aspect to this IAspectQueryable.
|
CalculateDistance<T>(in ColliderAspect, float, ref T, QueryInteraction)
|
Calculates the distance from the collider aspect to this IAspectQueryable.
|
CastCollider(in ColliderAspect, float3, float, ref NativeList<ColliderCastHit>, QueryInteraction)
|
Cast the collider aspect against this IAspectQueryable.
|
CastCollider(in ColliderAspect, float3, float, out ColliderCastHit, QueryInteraction)
|
Cast the collider aspect against this IAspectQueryable.
|
CastCollider(in ColliderAspect, float3, float, QueryInteraction)
|
Cast the collider aspect against this IAspectQueryable.
|
CastCollider<T>(in ColliderAspect, float3, float, ref T, QueryInteraction)
|
Cast the collider aspect against this IAspectQueryable.
|