public static PartyInventoryScreen GetInstance()
 {
     if (instance == null)
     {
         instance = FindObjectOfType <PartyInventoryScreen>();
     }
     return(instance);
 }
Beispiel #2
0
 private void ShowMenu()
 {
     StartCoroutine(PartyInventoryScreen.GetInstance().TransitionIn());
 }