Example #1
0
    private void OnTriggerEnter2D(Collider2D other)
    {
        if (other.GetComponent <Moving>() == null)
        {
            return;
        }

        OrbCounter.AddPoints(pointsToAdd);
        Destroy(gameObject);
    }