コード例 #1
0
 // remove instance if destroyed
 private void OnDestroy()
 {
     if (_instance == this)
     {
         _instance = null;
     }
 }
コード例 #2
0
 private void Awake()
 {
     if (_instance != null)
     {
         Destroy(gameObject);
     }
     else
     {
         _instance = this;
     }
 }
コード例 #3
0
 private void Start()
 {
     _descriptionController = ItemDescriptionUIController.Instance;
 }