Added intro screen.

This commit is contained in:
2026-06-24 14:01:18 -04:00
parent 9f5ec96e18
commit 855679391a
20 changed files with 839 additions and 30 deletions
+19
View File
@@ -0,0 +1,19 @@
using UnityEngine;
public class EndSplash : FadeCallback
{
public string nextSceneName; // Name of the next scene to load after the splash screen
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start() { }
// Update is called once per frame
void Update() { }
public override void OnFadeStarted() { }
public override void OnFadeComplete()
{
UnityEngine.SceneManagement.SceneManager.LoadScene(nextSceneName);
}
}