Hi, how do I create a collision between two static meshes so that the points of contact are drawn in red?
1 Like
Hit
and Overlap
events (also Sweeps
) produce Hit Result
structure:
These 2 pins contain the data you need (read their tooltips regarding the differences). When it comes to drawing a contact point in red, you have too many options:
- debug points
- particles
- widgets
- material
- HUD rectangles
- probably more…
Depends on what’s needed.
1 Like