Versions with this page:
Versions without this page:
暂停播放电影。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public MovieTexture movTexture; void Start() { GetComponent<Renderer>().material.mainTexture = movTexture; movTexture.Pause(); } }