UKismetSystemLibrary::BoxTraceSingle

Sweeps a box along the given line and returns the first blocking hit encountered.

Windows
MacOS
Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/Kismet/KismetSystemLibrary.h

Include

#include "Kismet/KismetSystemLibrary.h"

Source

/Engine/Source/Runtime/Engine/Private/KismetSystemLibrary.cpp

Syntax

static bool BoxTraceSingle
(
    UObject * WorldContextObject,
    const FVector Start,
    const FVector End,
    const FVector HalfSize,
    const FRotator Orientation,
    ETraceTypeQuery TraceChannel,
    bool bTraceComplex,
    const TArray< AActor * > & ActorsToIgnore,
    EDrawDebugTrace::Type DrawDebugType,
    FHitResult & OutHit,
    bool bIgnoreSelf,
    FLinearColor TraceColor,
    FLinearColor TraceHitColor,
    float DrawTime
)

Remarks

Sweeps a box along the given line and returns the first blocking hit encountered. This trace finds the objects that RESPONDS to the given TraceChannel

Returns

True if there was a hit, false otherwise.

Parameters

Parameter

Description

Start

Start of line segment.

End

End of line segment.

HalfSize

Distance from the center of box along each axis

Orientation

Orientation of the box

TraceChannel

bTraceComplex

True to test against complex collision, false to test against simplified collision.

OutHit

Properties of the trace hit.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss