Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

MovieTexture.Stop

public function Stop(): void;

Description

Stops playing the movie, and rewinds it to the beginning.

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