EMovieScene2DTransformChannel

Windows
MacOS
Linux

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

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss