using UnityEngine;
using System.Collections;

public class videoProjector_Control : MonoBehaviour {
	
	public MovieTexture  videoTexture;  	// Assign the movie texture via inspector
	
	void Start () 
	{
		// Play the video
		videoTexture.Play();
	}	
}