23 lines
541 B
C#
23 lines
541 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
namespace BrewMonster
|
|
{
|
|
public class BoostrapSceneController : MonoBehaviour
|
|
{
|
|
[SerializeField] private string _nextSceneName;
|
|
|
|
IEnumerator Start()
|
|
{
|
|
// Load the next scene after 1 second
|
|
yield return new WaitForSeconds(1f);
|
|
LoadNextScene();
|
|
}
|
|
|
|
private void LoadNextScene()
|
|
{
|
|
SceneManager.LoadScene(_nextSceneName);
|
|
}
|
|
}
|
|
} |