How to put an unity splash screen?

Hello everyone,

I’m a unity 5 pro user but I couldn’t figure out how to put my own splash screen in unity. the only thing i can figure out is how to remove the unity one but I am unable to find the custom splash screen input like i can see for iOS/android. Do I have to make this in a special scene all by myself or does unity have a way to do it with only a png file?

Thanks.

File → Build settings… → Player Settings → Splash Image

Create a new Scene “Scene0” with desired Splash Screen Image then Use a delay for showing next scene.
Something like :

float delay = 3;

IEnumerator Start(){
yield return new WaitForSecond(delay );
Application.LoadLevel("Scene1");
}

@kramboja How to solove this problem ?