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;
}
}
유니티 연산자 ? : 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 |
댓글 영역