Navigation
API > API/Runtime > API/Runtime/Engine
Enum to indicate type of test to perfom
| Name | EAsyncTraceType |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/WorldCollision.h |
| Include Path | #include "WorldCollision.h" |
Syntax
enum EAsyncTraceType
{
Test,
Single,
Multi,
}
Values
| Name | Remarks |
|---|---|
| Test | Return whether the trace succeeds or fails (using bBlockingHit flag on FHitResult), but gives no info about what you hit or where. |
| Single | Returns a single blocking hit |
| Multi | Returns a single blocking hit, plus any overlapping hits up to that point |