Enum

Windows
MacOS
Linux

References

Module

PhysicsCore

Header

/Engine/Source/Runtime/PhysicsCore/Public/PhysicsInterfaceTypesCore.h

Include

#include "PhysicsInterfaceTypesCore.h"

Syntax

enum Enum
{
    eSTATIC             = (1 << 0),
    eDYNAMIC            = (1 << 1),
    ePREFILTER          = (1 << 2),
    ePOSTFILTER         = (1 << 3),
    eANY_HIT            = (1 << 4),
    eNO_BLOCK           = (1 << 5),
    eSKIPNARROWPHASE    = (1 << 6),
    eRESERVED           = (1 << 15),
}

Values

Name

Description

eSTATIC

Traverse static shapes.

eDYNAMIC

Traverse dynamic shapes.

ePREFILTER

Run the pre-intersection-test filter.

ePOSTFILTER

Run the post-intersection-test filter.

eANY_HIT

Abort traversal as soon as any hit is found and return it via callback.block.

eNO_BLOCK

All hits are reported as touching.

eSKIPNARROWPHASE

Skip narrow phase check for the query.

eRESERVED

Reserved for internal use.

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