상세 컨텐츠

본문 제목

유니티 Singleton 싱글톤 노트

Unity/C# note

by 오발탄LAB 2020. 12. 15. 22:26

본문

반응형
    private static GameManager instance = null;

    private void Awake()
    {
        if (null == instance) {
            instance = this;
            DontDestroyOnLoad(this.gameObject);
        }
        else 
        {
            Destroy(this.gameObject);
        }
    }
    public static GameManager Instance 
    {
        get 
        {
            if (null == instance)
            {
                return null;
            }
            return instance;
        }
    }
반응형

'Unity > C# note' 카테고리의 다른 글

유니티 연산자 ? : ternary operator 사용법 노트  (0) 2021.03.01
유니티 color script로 변경 노트  (0) 2020.12.20
유니티 Invoke 노트  (0) 2020.11.17
유니티 LayerMask 노트  (0) 2020.10.24
유니티 Loading 노트  (0) 2020.10.15

관련글 더보기

댓글 영역