private void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
 }
Exemplo n.º 2
0
 private void Start()
 {
     // 하위 UI 관리
     _skillUIManager   = gameObject.GetComponent <CSkillUIManager>();
     _consumableViewer = CConsumableItemViewer.instance;
     _otherPlayerUi    = gameObject.GetComponent <COtherPlayerUiManager>();
     SetSceneCanvas();
 }