We know, you can use another image to replace the unity3d launch logo while opening the app,
but what I want is to use a movie replace the logo,Can I do that ? How? Thx…
We know, you can use another image to replace the unity3d launch logo while opening the app,
but what I want is to use a movie replace the logo,Can I do that ? How? Thx…
If you have Unity Pro you can use movie textures. Just import your mp4 or other movie format into unity and either attach it to a plane or create a GUI Texture out of it and cover the whole screen. If you attach it to something like a plane though. You have to write a script that is something like this(Don’t criticize if I am wrong) :
void Start() {
renderer.material.play();
}
then also put something like a coroutine to tell the game when to load the next scene. Like this:
public IEnumerator WaitToLoad() {
yield return new WaitForSeconds(length of video);
Application.LoadLevel(levelToLoad);
}
Hope I helped