Navigation
API > API/Plugins > API/Plugins/AvalancheMedia
| |
|
| Name |
EAvaPlaybackAction |
| Type |
enum |
| Header File |
/Engine/Plugins/VirtualProduction/Avalanche/Source/AvalancheMedia/Public/Playback/AvaPlaybackDefines.h |
| Include Path |
#include "Playback/AvaPlaybackDefines.h" |
Syntax
enum EAvaPlaybackAction
{
None,
Load,
Start,
Stop,
Unload,
Status,
SetUserData,
GetUserData,
}
Values
| Name |
Remarks |
| None |
No op |
| Load |
Load the given asset. Used for pre-loading assets. |
| Start |
Start (i.e. start ticking world and rendering) the given asset, loading it if not pre-loaded. |
| Stop |
Stop ticking and rendering the world. |
| Unload |
Unload the given asset, i.e. destroy the world, etc. |
| Status |
Request the status of the asset. No action is actually performed on the asset. |
| SetUserData |
Request to set the user data of the playback instance. |
| GetUserData |
Request the user data of the playback instance. No action is actually performed on the asset. |