Ejemplo n.º 1
0
 private void OnCollisionEnter2D(Collision2D other)
 {
     if (other.gameObject.CompareTag("Player") && !gameObject.CompareTag("Exit"))
     {
         if (HelperIvan.BlueKey == true)
         {
             gameObject.SetActive(false);
         }
     }
     else if (other.gameObject.CompareTag("Player") && gameObject.CompareTag("Exit"))
     {
         if (SceneManager.GetActiveScene().buildIndex == 2)
         {
             Time.timeScale = 0.0f;
             Thank.SetActive(true);
         }
         HelperIvan.LoadScene();
     }
 }
Ejemplo n.º 2
0
 public void NextLevel()
 {
     HelperIvan.LoadScene();
 }
Ejemplo n.º 3
0
 public void LoadScene()
 {
     HelperIvan.LoadScene();
 }