Navigation
API > API/Plugins > API/Plugins/EnhancedInput
This is an advanced setting that allows you to change how the value of an Input Action is calculated when there are multiple mappings to the same Input Action. The default behavior is to accept highest absolute value.
| Name | EInputActionAccumulationBehavior |
| Type | enum |
| Header File | /Engine/Plugins/EnhancedInput/Source/EnhancedInput/Public/InputAction.h |
| Include Path | #include "InputAction.h" |
Syntax
enum EInputActionAccumulationBehavior
{
TakeHighestAbsoluteValue,
Cumulative,
}
Values
| Name | Remarks |
|---|---|
| TakeHighestAbsoluteValue | Take the value from the mapping with the highest Absolute Value. |
| Cumulative | Cumulatively adds the key values for each mapping. |