Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

SplashScreen.isFinished

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static var isFinished: bool;
public static bool isFinished;

Description

Returns true once the splash screen as finished. This is once all logos have been shown for their specified duration.

#pragma strict
// This example shows how you could draw the splash screen at the start of a scene. This is a good way to integrate the splash screen with your own or add extras such as Audio.
public class SplashScreenExample extends MonoBehaviour {
	function Start() {
		Debug.Log("Showing splash screen");
		SplashScreen.Begin();
		while ( !SplashScreen.isFinished ) {
			SplashScreen.Draw();
			null}
		Debug.Log("Finished showing splash screen");
	}
}
using System.Collections;
using UnityEngine;
using UnityEngine.Rendering;

// This example shows how you could draw the splash screen at the start of a scene. This is a good way to integrate the splash screen with your own or add extras such as Audio. public class SplashScreenExample : MonoBehaviour { IEnumerator Start() { Debug.Log("Showing splash screen"); SplashScreen.Begin(); while (!SplashScreen.isFinished) { SplashScreen.Draw(); yield return null; } Debug.Log("Finished showing splash screen"); } }

Did you find this page useful? Please give it a rating: