Version: 2017.1
public void Play ();

説明

ムービーを再生します

シーンを変更するか Stop 関数を呼び出さない限り、多くの CPU パワーを消費して実行を続けます

Also note that MovieTextures does not behave exactly the same as for example audio clips. When you call the Play() method on a MovieTexture, it is the Asset that will start playing, and not a particular instance of the movie. This means that if you have for example several planes in your scene, all having the same MovieTexture set as their materials texture, when you call Play() on one of them, every instance of the Movie will start playing.

See Also: Stop, audioClip.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public MovieTexture movTexture; void Start() { GetComponent<Renderer>().material.mainTexture = movTexture; movTexture.Play(); } }