How do I detect my pawn has collided / overlapped a particle?

So I’ve got this so far, but how do I detect when the player has hit the particle ie the light cycle trail?

Particle collision seems to be one way; particle>object, but I can’t seem to figure this one out.

I’ve tried a single line trace but that won’t detect particles either. Any ideas?

I’m afraid you can’t collide ‘with’ particles, we don’t create any kind of spatial structure for them that would enable this. You will need to create some collision shapes to go along the trail and use those for collision.

Cheers James, I figured out I could fire an event then get the events location in my Blueprint, then I’m creating (currently) a static mesh so I get both collision and it affects the navmesh which is set to runtime dynamic. Probably going to look at simple box collision ‘at some point’