Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UWorld
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool ComponentOverlapMulti
(
TArray< struct FOverlapResult >& OutOverlaps, |
Test the collision of the supplied component at the supplied location/rotation using object types, and determine the set of components that it overlaps | Engine/World.h | |
bool ComponentOverlapMulti
(
TArray< struct FOverlapResult >& OutOverlaps, |
Engine/World.h |
ComponentOverlapMulti(TArray< struct FOverlapResult > &, const class UPrimitiveComponent *, const FVector &, const FQuat &, const FComponentQueryParams &, const FCollisionObjectQueryParams &)
Description
Test the collision of the supplied component at the supplied location/rotation using object types, and determine the set of components that it overlaps
The overload taking rotation as an FQuat is slightly faster than the version using FRotator (which will be converted to an FQuat)..
| Name | ComponentOverlapMulti |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/World.h |
| Include Path | #include "Engine/World.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Collision/WorldCollision.cpp |
bool ComponentOverlapMulti
(
TArray < struct FOverlapResult > & OutOverlaps,
const class UPrimitiveComponent * PrimComp,
const FVector & Pos,
const FQuat & Rot,
const FComponentQueryParams & Params,
const FCollisionObjectQueryParams & ObjectQueryParams
) const
TRUE if any hit is found
Parameters
| Name | Remarks |
|---|---|
| OutOverlaps | Array of overlaps found between component in specified pose and the world |
| PrimComp | Component's geometry to test against the world. Transform of this component is ignored |
| Pos | Location of PrimComp geometry for test against the world |
| Rot | Rotation of PrimComp geometry for test against the world |
| ObjectQueryParams | List of object types it's looking for. When this enters, we do object query with component shape |
ComponentOverlapMulti(TArray< struct FOverlapResult > &, const class UPrimitiveComponent *, const FVector &, const FRotator &, const FComponentQueryParams &, const FCollisionObjectQueryParams &)
| Name | ComponentOverlapMulti |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/World.h |
| Include Path | #include "Engine/World.h" |
bool ComponentOverlapMulti
(
TArray < struct FOverlapResult > & OutOverlaps,
const class UPrimitiveComponent * PrimComp,
const FVector & Pos,
const FRotator & Rot,
const FComponentQueryParams & Params,
const FCollisionObjectQueryParams & ObjectQueryParams
) const