Hello, i am very new to Unity 3D, and i need help with how i add an Intro to my Game, i have made a Main Menu, and when i click ‘Play Game’ i would like it to come up with my Logo, then it fades out and you can play the game.
Thanks
#Swifted
Hello, i am very new to Unity 3D, and i need help with how i add an Intro to my Game, i have made a Main Menu, and when i click ‘Play Game’ i would like it to come up with my Logo, then it fades out and you can play the game.
Thanks
#Swifted
One way would be to create an animation that fades the color value of a plane’s material in over time. You could use animation events if you want to do this with an animation. Or you could govern it all with a coroutine. Either way, you would call Application.LoadLevel() or one of its companion methods to load the level.
See here for animation events:
http://docs.unity3d.com/Documentation/Components/animeditor-AnimationEvents.html
And you might want to look at this question I answered here - one of the answers uses a coroutine to fade between two colours.
http://docs.unity3d.com/Documentation/Components/animeditor-AnimationEvents.html
Easy way to do this:
After the camera fade completes just load up your level:
Good luck!