728x90
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class YourClassName : Singleton<YourClassName> {
public YourClassName()
: base(false, true)
{
}
protected override void OnDestroy()
{
base.OnDestroy();
}
}
728x90
'프로그래밍 > Unity' 카테고리의 다른 글
Snapshot / Screenshot 생성 (0) | 2018.07.27 |
---|---|
Super ScrollView (0) | 2018.01.24 |
[Unity3D] Enable 과 Awake (0) | 2018.01.03 |
public 변수를 컴포넌트에서 읽기 전용으로 하기 (0) | 2017.11.16 |
Unirx - ObservableWWW.LoadFromCacheOrDownload (0) | 2016.10.14 |
댓글