Beispiel #1
0
 public void Hide()
 {
     if (GameObjectInstance != null)
     {
         GameObjectInstance.SetActive(false);
     }
 }
Beispiel #2
0
 public void Show()
 {
     if (GameObjectInstance != null)
     {
         GameObjectInstance.SetActive(true);
         MenuSytleAdapter.UpdateContainerColor();
     }
 }