i'm trying to create a simple game using babylon but stuck at a point where i need to detect
* the mesh(s) that is directly below a mesh that is being dragged
example - different food articles need to be placed on different types of plates
let's say an ice-cream scoop is being dragged(pointermove event) on any of the plates which are close to each other after someone places a scoop on a particular plate (pointerup event) how to know which mesh or meshes is below that?
a lengthy way is to loop through position of each mesh of plates(which are around 80 in number) with position of latest dragged mesh(ice cream scoop in this case) and find the right one above which ice cream is.
is there any other efficient method?