Making an intro for your game

Hey guys,

I have a question. I was wondering how you put an intro in unity for your game. For example before you get to the main menu of um… Call of Duty MW3, you see the name of the developers “Infinity Ward” and then the publishers name “Actvision”. Is this possible in the free version of unity? Would I add it in a scene or build settings?

And here some examples if you are confused

Easiest solution would probably to create a new scene and have that contain your intro, be it pieced together and ran realtime in Unity or maybe a series of movie textures that fade in and out.

I don’t think you can run real time in the free version of unity

Sure you can, the only difference is that in the non-Pro version, the Unity splash will be the first thing that is shown.

It’s possible without Pro, but a bit more complex.

You’ll need to render out each frame of your video to seperate images. Then import them into Unity and cycle via script through them. If you have sound for your intro, export the sound seperately, then import into Unity and use a AudioSource for it.