Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseMovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.
If the movie is downloading from a web site, this returns if enough data has been downloaded so playback should be able to start without interruptions. For movies not associated with a web stream, this value always returns true.
using UnityEngine; using UnityEngine.Networking;
public class Example : MonoBehaviour { // Plays a movie over a texture from a stream
UnityWebRequest wwwData; string url = ""; GUITexture gt;
void Start() { wwwData = UnityWebRequestMultimedia.GetMovieTexture(url); gt = GetComponent<GUITexture>(); gt.texture = DownloadHandlerMovieTexture.GetContent(wwwData); }
void Update() { MovieTexture m = gt.texture as MovieTexture;
if (!m.isPlaying && m.isReadyToPlay) { m.Play(); } } }