Navigation
API > API/Plugins > API/Plugins/EnhancedInput
Trigger type determine how the trigger contributes to an action's overall trigger event the behavior of the trigger
| Name | ETriggerType |
| Type | enum |
| Header File | /Engine/Plugins/EnhancedInput/Source/EnhancedInput/Public/InputTriggers.h |
| Include Path | #include "InputTriggers.h" |
Syntax
enum ETriggerType
{
Explicit,
Implicit,
Blocker,
}
Values
| Name | Remarks |
|---|---|
| Explicit | Input may trigger if any explicit trigger is triggered. |
| Implicit | Input may trigger only if all implicit triggers are triggered. |
| Blocker | Inverted trigger that will block all other triggers when IsBlocking returns true. |