Add resources

This commit is contained in:
2025-12-22 23:03:57 -07:00
parent ade50c0c94
commit bc3653a91e
180 changed files with 18830 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
public class ButtonToScene : MonoBehaviour {
public string sceneName;
void Awake() {
gameObject.GetComponent<Button>().onClick.AddListener(() => {
SceneManager.LoadScene(sceneName);
});
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 804df76422d8b45cfb9f80c2b6fdc795