Version: 2019.1
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 &amp;&amp; m.isReadyToPlay) { m.Play(); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961