Unity Game Session MVP

This commit is contained in:
Le Duc Anh
2025-09-08 16:28:54 +07:00
parent b75c818a1b
commit e3e435d12e
31 changed files with 2776 additions and 5 deletions
@@ -0,0 +1,23 @@
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);
}
}
}