728x90
728x170
using UnityEngine;
public class GameManager : MonoBehaviour
{
private static GameManager instance = null;
public static GameManager Instance
{
get
{
if (instance == null)
{
instance = new GameManager();
}
return instance;
}
}
private void Awake()
{
instance = this;
}
}
728x90
그리드형
'Unity' 카테고리의 다른 글
[Unity] GradleTemplates 원본 파일 Unity 2020.3.6f1 기준 (0) | 2021.10.23 |
---|---|
[Unity] Animation 에 지연이 발생되는 경우 확인할 것 (0) | 2021.10.21 |
[Unity] Awake / Start 차이점 (0) | 2021.10.15 |
[Unity] Update / FixedUpdate / LateUpdate 차이점 (0) | 2021.10.13 |
[Unity] Galaxy S21 (Android 11) 에서 AR Camera 동작 시 앱이 죽는 경우 (1) | 2021.10.07 |