Can one click trigger 2 colliders?

I want onmousedown to be triggered on an 2 colliders, one on a parent object that encompasses the collider on the child. is this possible?

Ive got two ideas for your problem:

  1. Turn off the collider in the parent object and run a new raycast, that should pick up the child

  2. Let the child objects know what their parent is when creating them, and store it in a variable. Don’t have any colliders on the parent object, the the children tell the parent about the click event.