I have an intro scene with a simple camera and this script attached to it:
#pragma strict function Start () { Handheld.PlayFullScreenMovie ("introfootage.mov", Color.black, FullScreenMovieControlMode.CancelOnInput); }
What should I add to the code, so scene “x” is loaded directly after the “intromovie” finished playing?
Read the manual:
Alone It just doesn’t load the next scene. It just loads the scene which contains the movie script,it slides up vertically the movie where you can see the scene behind, which is in itself an ugly transition, and we seem to have no control on it.
Just add your Application.LoadLevel to take place afterwards.
all right, thanks for the info.