Navigation
API > API/Runtime > API/Runtime/UMG
Describes playback modes for UMG sequences.
| Name | EUMGSequencePlayMode::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/UMG/Public/Blueprint/UMGSequencePlayMode.h |
| Include Path | #include "Blueprint/UMGSequencePlayMode.h" |
Syntax
namespace EUMGSequencePlayMode
{
enum Type
{
Forward,
Reverse,
PingPong,
}
}
Values
| Name | Remarks |
|---|---|
| Forward | Animation plays and loops from the beginning to the end. |
| Reverse | Animation plays and loops from the end to the beginning. |
| PingPong | Animation plays from the beginning to the end and then from the end to the beginning. |