Exemplo n.º 1
0
 void Update()
 {
     if (con.dying == false)
     {
         if (Hide_Stat == null)
         {
             Vision_detect();
             DisCheck();
         }
         else
         {
             if (Hide_Stat.Hidding == false)
             {
                 Vision_detect();
                 DisCheck();
             }
             else
             {
                 PlayerIsDetect = false;
                 Enemy_WayP.Waypoint_move();
             }
         }
     }
     else
     {
         con.Crab_Death();
         Invoke("Destroy_this", 3.0f);
     }
 }
Exemplo n.º 2
0
 void Update()
 {
     if (con.dying != true)
     {
         WP_con.Waypoint_move();
     }
     else
     {
         con.Crab_Death();
         Invoke("Destroy_this", 3.0f);
     }
 }