Description

Describes the current status of a VideoTextureProvider.

Example

// Check if the video is playing
//@input Asset.Texture videoTexture
var provider = script.videoTexture.control;
if(provider.getStatus() == VideoStatus.Playing){
print("Video is playing");
}

Enumeration Members

Enumeration Members

Paused: number

Description

The video playback is paused

Playing: number

Description

The video is playing

Preparing: number

Description

The video is being prepared

Stopped: number

Description

The video playback has stopped

Generated using TypeDoc