Navigation
API > API/Runtime > API/Runtime/UMG
| |
|
| Name |
EMovieScene2DTransformChannel |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/UMG/Public/Animation/MovieScene2DTransformSection.h |
| Include Path |
#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 |
Remarks |
| None |
|
| TranslationX |
|
| TranslationY |
|
| Translation |
|
| Rotation |
|
| ScaleX |
|
| ScaleY |
|
| Scale |
|
| ShearX |
|
| ShearY |
|
| Shear |
|
| AllTransform |
|