How Can I Update Emitter Location?

I spawned an emitter using blueprints (inside my level blueprint).

I need help updating its location…I do not know how to get a reference of the emitter nor do I know how to locate all spawned emitters using blueprints. I have tried getAllActorsofClass (emitter) with no results.

When you spawn an emitter, it will return a ‘Particle System Component’ reference. You will need to store that Particle System Component if you plan on modifying it later.

Alternatively, you could call ‘GetAllActorsOfClass’ to get ‘Particle System Component’ references. But I suggest storing the Particle System Component for later use.