Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#
Method group is Obsolete

MovieTexture.isReadyToPlay

Switch to Manual
Obsolete public bool isReadyToPlay;

Description

MovieTexture 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(); } } }

Did you find this page useful? Please give it a rating: