Navigation
API > API/Plugins > API/Plugins/AvalancheMedia
| Name | EAvaPlayableTransitionEventFlags |
| Type | enum |
| Header File | /Engine/Plugins/VirtualProduction/Avalanche/Source/AvalancheMedia/Public/AvaMediaDefines.h |
| Include Path | #include "AvaMediaDefines.h" |
Syntax
enum EAvaPlayableTransitionEventFlags
{
None = 0,
Starting = 1 << 0,
ShowPlayable = 1 << 1,
StopPlayable = 1 << 2,
MarkPlayableDiscard = 1 << 3,
Finished = 1 << 4,
}
Values
| Name | Remarks |
|---|---|
| None | |
| Starting | The transition is starting. |
| ShowPlayable | The enter playable can be shown. |
| StopPlayable | The playable needs to be stopped. |
| MarkPlayableDiscard | The playable needs to be discarded at the end of the transition. |
| Finished | The transition is finished and can be cleaned up. |