19 UFUNCTION(BlueprintPure, Category=
"Ease", meta=(DisplayName=
"Ease Alpha (Custom)", Keywords=
"Ease Easing Curve"))
20 static
float EaseAlphaCustom(
float Alpha,
EEaseType Type);
22 UFUNCTION(BlueprintPure, Category="Ease", meta=(DisplayName="Lerp (Float, Custom Ease)", Keywords="Lerp Ease"))
23 static
float LerpFloatEase(
float A,
float B,
float Alpha,
EEaseType Type);
25 UFUNCTION(BlueprintPure, Category="Ease", meta=(DisplayName="Lerp (Vector, Custom Ease)", Keywords="Lerp Ease"))
26 static FVector LerpVectorEase(const FVector& A, const FVector& B,
float Alpha,
EEaseType Type);
28 UFUNCTION(BlueprintPure, Category="Ease", meta=(DisplayName="Lerp (Rotator, Custom Ease)", Keywords="Lerp Ease"))
29 static FRotator LerpRotatorEase(const FRotator& A, const FRotator& B,
float Alpha,
EEaseType Type);