Navigation
API > API/Plugins > API/Plugins/TweeningUtilsEditor
Util enum which is useful for UI code to abstract functions.
| Name | UE::TweeningUtilsEditor::EBlendFunction |
| Type | enum |
| Header File | /Engine/Plugins/Animation/TweeningUtils/Source/TweeningUtilsEditor/Public/Math/Abstraction/KeyBlendingAbstraction.h |
| Include Path | #include "Math/Abstraction/KeyBlendingAbstraction.h" |
Syntax
namespace UE
{
namespace TweeningUtilsEditor
{
enum EBlendFunction
{
BlendNeighbor,
PushPull,
BlendEase,
ControlsToTween,
BlendRelative,
SmoothRough,
TimeOffset,
Num,
}
}
}
Values
| Name | Remarks |
|---|---|
| BlendNeighbor | Simple blends, i.e. signature: double(const FKeyBlendInfo&). |
| PushPull | |
| BlendEase | |
| ControlsToTween | |
| BlendRelative | |
| SmoothRough | |
| TimeOffset | Complex blends. |
| Num | Add new entries above. |