Video Logo ( Need Information )

Hi Guys.
Is there a way to add a Animated Logo i mean a video created in Adobe After Effect to the Game so when i start it the video logo will appear and than goes to menu ?

I am just asking about the part how to put a video and how to make it play when the game start the rest stuff about going to menu and so on i already maid :).

Oh and if someone know how big resolution i can use ?

You can do it if you have Pro. Then you just load the movie as a video texture and apply it to a full screen quad using an unlit shader.

Yes i have unity pro but once i sow that to play the movie i need to press any button and i want to play when i turn on the game without pressing anything :).

NVM guy i did it my self :slight_smile: the solution was easy but remember i don’t know anytihng about scripting :stuck_out_tongue: i use standard script but i delete the Input and replace it with LoadLevel

function Update () {
	if (Application.LoadLevel) {
		if (renderer.material.mainTexture.isPlaying) {
			renderer.material.mainTexture.Pause();
		}
		else {
			renderer.material.mainTexture.Play();
		}
	}
}