Navigation
API > API/Plugins > API/Plugins/AvalancheMedia > API/Plugins/AvalancheMedia/Playback
References
| |
|
| Module |
AvalancheMedia |
| Header |
/Engine/Plugins/Experimental/Avalanche/Source/AvalancheMedia/Public/Playback/AvaPlaybackDefines.h |
| Include |
#include "Playback/AvaPlaybackDefines.h" |
Syntax
enum EAvaPlaybackAction
{
None,
Load,
Start,
Stop,
Unload,
Status,
SetUserData,
GetUserData,
}
Values
| Name |
Description |
| 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. |