Module |
|
Header |
/Engine/Source/Runtime/Engine/Classes/Kismet/KismetSystemLibrary.h |
Include |
#include "Kismet/KismetSystemLibrary.h" |
Source |
/Engine/Source/Runtime/Engine/Private/KismetSystemLibrary.cpp |
static bool
CapsuleTraceSingleForObjects
(
const UObject
* WorldContextObject,
const FVector
Start,
const FVector
End,
float Radius,
float HalfHeight,
const TArray
< TEnumAsByte
< EObjectTypeQuery
> > & ObjectTypes,
bool
bTraceComplex,
const TArray
< AActor
* > & ActorsToIgnore,
EDrawDebugTrace::Type
DrawDebugType,
FHitResult
& OutHit,
bool
bIgnoreSelf,
FLinearColor
TraceColor,
FLinearColor
TraceHitColor,
float DrawTime
)
Sweeps a capsule along the given line and returns the first hit encountered. This only finds objects that are of a type specified by ObjectTypes.
True if there was a hit, false otherwise.
Parameter |
Description |
---|---|
WorldContext |
World context |
Start |
Start of line segment. |
End |
End of line segment. |
Radius |
Radius of the capsule to sweep |
HalfHeight |
Distance from center of capsule to tip of hemisphere endcap. |
ObjectTypes |
Array of Object Types to trace |
bTraceComplex |
True to test against complex collision, false to test against simplified collision. |
OutHit |
Properties of the trace hit. |