To determine if an object is being touched, you need to combine tracking the touch events (e.g. pointermove, as documented here) to know where all the current touches are, with the containsPoint method to identify if one of those touches is over an object. (This is what the Touch object does internally.)