2026-07-05 기본씬 삭제, 폴더구조 확보

This commit is contained in:
2026-07-05 21:34:34 +09:00
parent d340446b19
commit 2e62e509e9
52 changed files with 167 additions and 1057 deletions

View File

@@ -0,0 +1,18 @@
using UnityEngine;
public class GlobalObject : MonoBehaviour
{
private static GlobalObject _instance;
void Awake()
{
if (_instance == null)
{
_instance = this;
DontDestroyOnLoad(gameObject);
}
else
{
Destroy(gameObject);
}
}
}