Exemplo n.º 1
0
    private void OnTriggerEnter2D(Collider2D other)
    {
        LinkController controller = other.GetComponent <LinkController>();

        if (controller != null && collectible)
        {
            // Add item to inventory

            Destroy(gameObject);

            controller.PlaySound(collected);
            controller.CollectBoomerang();
        }
    }