Detecting when SKEmitterNode particle makes contact with another SKNode

310 Views Asked by At

Does anyone know how I can detect when an SKEmitterNode particle makes contact with a SKNode in the SKScene?

I want to apply a little force to the SKNode when a particle makes contact with it for a 2D game I'm creating.

1

There are 1 best solutions below

2
On

You can't. You can't get the location, size and other properties of individual particles.

The essence of a particle system is that its particles are minimalistic and under full control of the particle system. Hence you don't normally get any access to individual particles in a game engine, mainly because it wouldn't make sense to do so.

There can be specialized particle emitters built on regular sprites where you have access to particles and where particles can have physics bodies. Solutions exist for other engines but I'm not aware of one that works with Sprite Kit. These are always slower than regular particle emitters, especially with physics enabled, forcing you to use a lot less particles to begin with.