Read Time:20 Second
👉 Description: In This Video You’ll Learn About the Splash Screen in Unity Using C# Script.
C# Script From Splash Screen Unity:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Splash : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
StartCoroutine(SplashScreen());
}
IEnumerator SplashScreen()
{
yield return new WaitForSeconds(3f);
SceneManager.LoadScene("MainMenuScene");
}
}
Average Rating