1
0

initial commit

This commit is contained in:
LupiNexMedia
2026-04-28 09:32:03 +02:00
commit f84f5c592b
2173 changed files with 376140 additions and 0 deletions
@@ -0,0 +1,11 @@
using UnityEngine;
using UnityEngine.SceneManagement;
public class LoadSceneByIndex : MonoBehaviour
{
// General method to load scenes based on build index
public void LoadScene(int sceneIndex)
{
SceneManager.LoadScene(sceneIndex);
}
}