Navigation
API > API/Runtime > API/Runtime/MovieScene
Movie scene blend type enumeration
| Name | EMovieSceneBlendType |
| Type | enum |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Evaluation/Blending/MovieSceneBlendType.h |
| Include Path | #include "Evaluation/Blending/MovieSceneBlendType.h" |
Syntax
enum EMovieSceneBlendType
{
Invalid,
Absolute = 0x1,
Additive = 0x2,
Relative = 0x4,
AdditiveFromBase = 0x8,
Override = 0x10,
}
Values
| Name | Remarks |
|---|---|
| Invalid | |
| Absolute | Blends all other weighted values together as an average of the total weight |
| Additive | Applies this value as a sum total of all other additives |
| Relative | Applies this value as a sum total of all other additives and the initial value before the animation |
| AdditiveFromBase | Applies this value as an additive equal to the difference between the current value and the first value |
| Override | The value will override the current value |