Exemplo n.º 1
0
 private void OnTriggerEnter2D(Collider2D collision)
 {
     if (!collision.gameObject.CompareTag("Player"))
     {
         return;
     }
     player.AddBullets(bullets);
     Destroy(gameObject);
 }