Esempio n. 1
0
 public void PutDownClipboard()
 {
     isLookAt           = false;
     transform.position = homePosition;
     transform.rotation = homeRotation;
     signUpPanel.SetActive(false);
     signInPanel.SetActive(false);
     RatSightingPanel.SetActive(false);
 }
Esempio n. 2
0
 private void SetContext(int choice)
 {
     if (choice == 0)
     {
         signUpPanel.SetActive(true);
     }
     else if (choice == 1)
     {
         signInPanel.SetActive(true);
     }
     else if (choice == 2)
     {
         RatSightingPanel.SetActive(true);
     }
 }