示例#1
0
 private void Start()
 {
     box_Spawner.SpawnBox();
 }
示例#2
0
    private IEnumerator SpawnBoxCoroutine()
    {
        yield return(new WaitForSeconds(0.7f));

        boxSpawner.SpawnBox();
    }
示例#3
0
 // Start is called before the first frame update
 void Start()
 {
     boxSpawner.SpawnBox();
 }
 // Start is called before the first frame update
 void Start()
 {
     box_Spawner.SpawnBox();
     highScore.text = PlayerPrefs.GetInt("HighScore", 0).ToString();
 }
示例#5
0
    // Start is called before the first frame update
    void Start()
    {
        box_Spawner.SpawnBox();

        score = GameObject.FindWithTag("Score");
    }
示例#6
0
 void Start()
 {
     box_Spawner.SpawnBox(); //calling the method
 }
 public void Start()
 {
     box_spawner.SpawnBox();
 }