2026-04-16 로딩화면

This commit is contained in:
2026-04-16 18:09:30 +09:00
parent 42646a636f
commit 55e644f34e
38 changed files with 949 additions and 6 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);
}
}
}