유니티/정리 (1) 썸네일형 리스트형 유니티에서의 싱글톤 사용. 유니티에서 싱글톤 사용 코드 정리 using System.Collections; using System.Collections.Generic; using UnityEngine; public class MonoSingleton : MonoBehaviour where T : MonoBehaviour { private static T instance = null; public static T Instance { get { if (instance == null) { instance = new GameObject(typeof(T).ToString()).AddComponent(); DontDestroyOnLoad(instance.gameObject); } return instance; } } } 유니티에서의 싱글톤 .. 이전 1 다음