Navigation
API > API/Runtime > API/Runtime/Engine
Selects which families of touch component events UPrimitiveComponent::DispatchTouchHitResult should fire. BeginEnd mirrors APlayerController::bEnableTouchEvents; Over mirrors bEnableTouchOverEvents.
| Name | ETouchEventFamilies |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Components/PrimitiveComponent.h |
| Include Path | #include "Components/PrimitiveComponent.h" |
Syntax
enum ETouchEventFamilies
{
None = 0,
BeginEnd = 1 << 0,
Over = 1 << 1,
All = BeginEnd | Over,
}
Values
| Name | Remarks |
|---|---|
| None | |
| BeginEnd | |
| Over | |
| All |