Describes the current status of a VideoTextureProvider.
// Check if the video is playing//@input Asset.Texture videoTexturevar provider = script.videoTexture.control;if(provider.getStatus() == VideoStatus.Playing){ print("Video is playing");} Copy
// Check if the video is playing//@input Asset.Texture videoTexturevar provider = script.videoTexture.control;if(provider.getStatus() == VideoStatus.Playing){ print("Video is playing");}
The video playback is paused, resources loaded, at current position
The video is playing
The video is being prepared
The video playback is stopped, resources loaded, at position 0
The video is unloaded (no resources allocated)
Describes the current status of a VideoTextureProvider.
Example