October3d55/M/LGUI/Source/LTween/Private/Tweener/LTweenerVector2D.h

57 lines
1.5 KiB
C
Raw Normal View History

2025-03-10 09:43:27 +08:00
// Copyright 2019-Present LexLiu. All Rights Reserved.
#pragma once
#include "LTweener.h"
#include "LTweenerVector2D.generated.h"
UCLASS(NotBlueprintType)
class LTWEEN_API ULTweenerVector2D :public ULTweener
{
GENERATED_BODY()
public:
float startFloat = 0.0f;//b
float changeFloat = 1.0f;//c
FVector2D startValue;
FVector2D endValue;
FLTweenVector2DGetterFunction getter;
FLTweenVector2DSetterFunction setter;
FVector2D originStartValue;
void SetInitialValue(const FLTweenVector2DGetterFunction& newGetter, const FLTweenVector2DSetterFunction& newSetter, const FVector2D& newEndValue, float newDuration)
{
this->duration = newDuration;
this->getter = newGetter;
this->setter = newSetter;
this->endValue = newEndValue;
this->startFloat = 0.0f;
this->changeFloat = 1.0f;
}
protected:
virtual void OnStartGetValue() override
{
if (getter.IsBound())
this->startValue = getter.Execute();
this->originStartValue = this->startValue;
}
virtual void TweenAndApplyValue(float currentTime) override
{
float lerpValue = tweenFunc.Execute(changeFloat, startFloat, currentTime, duration);
auto value = FMath::Lerp(startValue, endValue, lerpValue);
setter.ExecuteIfBound(value);
}
virtual void SetValueForIncremental() override
{
auto diffValue = endValue - startValue;
startValue = endValue;
endValue += diffValue;
}
virtual void SetOriginValueForRestart() override
{
auto diffValue = endValue - startValue;
startValue = originStartValue;
endValue = originStartValue + diffValue;
}
};