티스토리 뷰
반응형
[1분 해결] 유니티(unity) 싱글톤 구현
구현
public class NFCHelper : MonoBehaviour
{
private static NFCHelper instance = null;
void Awake()
{
if (null == instance)
{
instance = this;
DontDestroyOnLoad(this.gameObject);
}
else
{
Destroy(this.gameObject);
}
}
public static NFCHelper Instance
{
get
{
if (null == instance)
{
return null;
}
return instance;
}
}
public void Test(){
}
}
사용
NfcHelper.Instance.Test()
태그
반응형
'유니티(unity)' 카테고리의 다른 글
[유니티(unity)/캐릭터이동] CharacterController 이용한 캐릭터 이동 (1) | 2021.11.02 |
---|---|
[유니티(unity)/객체회전] transform.rotation 회전 (0) | 2021.11.02 |
[유니티(Unity)/충돌처리]Trigger이용 / Collider이용 (0) | 2021.11.01 |
[1분 해결] 유니티(unity) - 객체(object) 움직이기 with 가속도 (0) | 2021.10.27 |
[1분 해결] 유니티(unity) - TLS Allocator ALLOC_TEMP_THREAD, underlying allocator ALLOC_TEMP_THREAD has unfreed allocations 메세지 해결 방법 (3) | 2021.10.26 |
댓글
반응형