Navigation
API > API/Plugins > API/Plugins/EnhancedInput
Inheritance Hierarchy
- UObject
- UInputModifier
- UInputModifierSmoothDelta
References
| Module | EnhancedInput |
| Header | /Engine/Plugins/EnhancedInput/Source/EnhancedInput/Public/InputModifiers.h |
| Include | #include "InputModifiers.h" |
Syntax
UCLASS (NotBlueprintable, MinimalAPI, Meta=(DisplayName="Smooth Delta"))
class UInputModifierSmoothDelta : public UInputModifier
Remarks
Normalized Smooth Delta
Produces a smoothed normalized delta of the current(new) and last(old) input value. Boolean input values will be returned as is.
Variables
| Type | Name | Description | |
|---|---|---|---|
| FVector | Delta | ||
| float | EasingExponent | For ease functions, this controls the degree of the curve. | |
| FVector | OldValue | ||
| ENormalizeInputSmoothingType | SmoothingMethod | ||
| float | Speed | Speed, or Alpha. If the speed given is 0, then jump to the target. |
Overridden from UInputModifier
| Type | Name | Description | |
|---|---|---|---|
| FInputActionValue | ModifyRaw_Implementation
(
const UEnhancedPlayerInput* PlayerInput, |
ModifyRaw implementation. Override this to alter input values in native code. |