Esempio n. 1
0
 // Start is called before the first frame update
 void Start()
 {
     Point_star_1 = GameObject.Find("Aim Point 1");
     Point_star_2 = GameObject.Find("Aim Point 2");
     Point_star_3 = GameObject.Find("Aim Point 3");
     //P_camera = GameObject.Find("Main Camera");
     Point_star_2.SetActive(false);
     Point_star_3.SetActive(false);
 }
Esempio n. 2
0
 public void hit_target()
 {
     Point_star_3.SetActive(true);
     TransNum = 1;
     InvokeRepeating("Game_Disapper", 0.01f, 0.08f);
 }