Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UInputDeviceProperty
Description
Evaluate this device property for a given duration. If overriding in Blueprints, make sure to call the parent function!
| Name | EvaluateDeviceProperty |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/GameFramework/InputDeviceProperties.h |
| Include Path | #include "GameFramework/InputDeviceProperties.h" |
UFUNCTION (BlueprintNativeEvent, Category="InputDevice")
void EvaluateDeviceProperty
(
const FPlatformUserId PlatformUser,
const FInputDeviceId DeviceId,
const float DeltaTime,
const float Duration
)
A pointer to the evaluated input device property.
Parameters
| Name | Remarks |
|---|---|
| PlatformUser | The platform user that should receive this device property change |
| DeltaTime | Delta time |
| Duration | The number of seconds that this property has been active. Use this to get things like curve data over time. |