Пример #1
0
 private void OnTriggerEnter2D(Collider2D collision)
 {
     if (collision.CompareTag("Player"))
     {
         PlayerInventory inventory = collision.GetComponent <PlayerInventory>();
         inventory.AddBloodCell(cellType, amount);
         Destroy(gameObject);
     }
 }