Unity 싱글톤
[유니티] MonoSingleton
유니티에서 싱글톤을 쓰면서 MonoBehaviour를 상속받는 싱글톤과 아닌것을 나누는 필요성을 느꼈다. 만들고나니 왠만한 프로젝트에서 다 써도 될 것 같아 남김 using UnityEngine; using System.Collections; using System.Collections.Generic; //씬 변경시 삭제가 되야하는 싱글톤들은 'class : MonoSingleton, IDestructible' 의 형태로 선언한다. interface IDestructible { } //하이라키에서 보여져야 하는 싱글톤들은 'class : MonoSingleton, IAppearable' 의 형태로 선언한다. interface IAppearable { } //싱글톤 관리 루트 클래스 public stati..