An overlap query tells you whether a shape currently intersects other shapes. Compared to a raycast or a sweep, what can a basic overlap query not report?
- aWhich layer or group the shape belongs to
- bWhether the shape is static or can move
- cA contact point or a surface's direction✓
- dWhich scene the shape currently exists in
Explanation:Overlap answers only a yes/no intersection question; with no path to measure along, it has no contact point or surface direction to report. (a), (b), and (d) are unrelated to what overlap fundamentally lacks.