コード例 #1
0
 // Start is called before the first frame update
 void Start()
 {
     score = score_control.GetComponent <score_control>();
     spawn();
 }
コード例 #2
0
ファイル: shot_control.cs プロジェクト: oars44/Space-Invaders
    // Start is called before the first frame update
    void Start()
    {
        GameObject manager = GameObject.Find("score_manager");

        scores = manager.GetComponent <score_control>();
    }
コード例 #3
0
 // Start is called before the first frame update
 void Start()
 {
     scores = score_manager.GetComponent <score_control>();
 }