Navigation
API > API/Plugins > API/Plugins/AvalancheMedia > API/Plugins/AvalancheMedia/Playback
References
| Module | AvalancheMedia |
| Header | /Engine/Plugins/Experimental/Avalanche/Source/AvalancheMedia/Public/Playback/AvaPlaybackGraph.h |
| Include | #include "Playback/AvaPlaybackGraph.h" |
Syntax
enum EAvaPlaybackStopOptions
{
None = 0,
ForceImmediate = 1 << 1,
Unload = 1 << 2,
Default = None,
}
Values
| Name | Description |
|---|---|
| None | Default option allows for deferred execution of the request when it is safe to do so. |
| ForceImmediate | Forces the execution of the request when it is called. Typically during shut down. |
| Unload | Unload from memory after being stopped. |
| Default | Default option allows for deferred execution of the request when it is safe to do so. |