言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

MovieTexture.Stop

public function Stop(): void;

Description

再生を停止して最初に巻き戻します

	// Assigns a movie texture to the current transform, plays it
	// and when the user presses the *space* key, stops the video.

	var movTexture : MovieTexture;

	function Start () {
		renderer.material.mainTexture = movTexture;
		movTexture.Play();
	}

	function Update() {
		 if(Input.GetKeyDown(KeyCode.Space))
			movTexture.Stop();
	}