Hi, im making splash screen and enable player to skip it by tapping the screen.
StartCoroutine ("Splash");
while(!onSkip){
if(Input.touchCount == 1){
onSkip = true;
StopCoroutine("Splash");
Application.LoadLevel ("MainMenu");
}
}
However when I test it the editor become not responding. Is there any alternative method to accomplish this?