Ejemplo n.º 1
0
    private void AddScore()
    {
        Debug.Log("Score up!");
        // For adding score points

        scoreBehaviour.AddScore(scoreAddPoints);
    }
Ejemplo n.º 2
0
 private void OnTriggerEnter2D(Collider2D collision)
 {
     if (collision.CompareTag("Ball"))
     {
         score.AddScore(10);
     }
 }
Ejemplo n.º 3
0
 void OnCollisionEnter2D(Collision2D coll)
 {
     if (coll.gameObject.tag == "Player")
     {
         score.AddScore(pontos);
         Destroy(gameObject);
     }
 }
Ejemplo n.º 4
0
    void onCollisionEnter2D(Collision2D col)
    {
        // target is hit
        if (col.gameObject.tag == "Bullet")
        {
            Debug.Log("Target was Hit!");

            // calling AddScore method
            ScoreBehaviour.AddScore();

            // play sound
            source.Play();

            Destroy(col.gameObject);
            Destroy(gameObject);
        }
    }