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
SphereTraceSingle
(
const UObject
* WorldContextObject,
const FVector
Start,
const FVector
End,
float Radius,
ETraceTypeQuery
TraceChannel,
bool
bTraceComplex,
const TArray
< AActor
* > & ActorsToIgnore,
EDrawDebugTrace::Type
DrawDebugType,
FHitResult
& OutHit,
bool
bIgnoreSelf,
FLinearColor
TraceColor,
FLinearColor
TraceHitColor,
float DrawTime
)
Sweeps a sphere along the given line and returns the first blocking hit encountered. This trace finds the objects that RESPONDS to the given TraceChannel
True if there was a hit, false otherwise.
Parameter |
Description |
---|---|
Start |
Start of line segment. |
End |
End of line segment. |
Radius |
Radius of the sphere to sweep |
TraceChannel |
|
bTraceComplex |
True to test against complex collision, false to test against simplified collision. |
OutHit |
Properties of the trace hit. |