Background + Buttons

Added Background Image to Main Menu and added Buttons to enter or leave the game.
This commit is contained in:
Iazubi
2024-10-25 14:52:32 -07:00
parent 18b5d96b79
commit 33120cb9aa
8 changed files with 1293 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using UnityEngine;
using UnityEngine.SceneManagement;
public class SceneLoader : MonoBehaviour
{
// Method to load the "SampleScene"
public void LoadSampleScene()
{
SceneManager.LoadScene("SampleScene");
}
}