Navigation
API > API/Runtime > API/Runtime/UMG > API/Runtime/UMG/Animation
References
| Module | UMG |
| Header | /Engine/Source/Runtime/UMG/Public/Animation/MovieScene2DTransformSection.h |
| Include | #include "Animation/MovieScene2DTransformSection.h" |
Syntax
enum EMovieScene2DTransformChannel
{
None = 0x000,
TranslationX = 0x001,
TranslationY = 0x002,
Translation = TranslationX | TranslationY,
Rotation = 0x004,
ScaleX = 0x008,
ScaleY = 0x010,
Scale = ScaleX | ScaleY,
ShearX = 0x020,
ShearY = 0x040,
Shear = ShearX | ShearY,
AllTransform = Translation | Rotation | Scale | Shear,
}
Values
| Name | Description |
|---|---|
| None | |
| TranslationX | |
| TranslationY | |
| Translation | |
| Rotation | |
| ScaleX | |
| ScaleY | |
| Scale | |
| ShearX | |
| ShearY | |
| Shear | |
| AllTransform |