Navigation
API > API/Plugins > API/Plugins/EnhancedInput
Inheritance Hierarchy
- UObjectBase
- UObjectBaseUtility
- UObject
- UInputModifier
- UInputModifierDeadZone
References
| Module | EnhancedInput |
| Header | /Engine/Plugins/EnhancedInput/Source/EnhancedInput/Public/InputModifiers.h |
| Include | #include "InputModifiers.h" |
Syntax
UCLASS&40;NotBlueprintable, MinimalAPI, Meta&61;&40;DisplayName&61;"Dead Zone"&41;&41;
class UInputModifierDeadZone : public UInputModifier
Remarks
Dead Zone Input values within the range LowerThreshold -> UpperThreshold will be remapped from 0 -> 1. Values outside this range will be clamped.
Variables
| Type | Name | Description | |
|---|---|---|---|
| float | LowerThreshold | Threshold below which input is ignored. | |
| EDeadZoneType | Type | ||
| float | UpperThreshold | Threshold above which input is clamped to 1. |
Overridden from UInputModifier
| Type | Name | Description | |
|---|---|---|---|
| FLinearColor | GetVisualizationColor_Implementation
(
FInputActionValue SampleValue, |
Visualize as black when unmodified. | |
| FInputActionValue | ModifyRaw_Implementation
(
const UEnhancedPlayerInput* PlayerInput, |
ModifyRaw implementation. Override this to alter input values in native code. |