With the particle system, is there any way to set different values on spawn for each individual particle?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By BasDeBeer

Im trying to create a particle system so that particles move between two different nodes. One is the particle emitter and another is an object in the room.

I have got this working by grabbing both of the nodes their location and applying the normalized vector to the direction with setdirection and the gravity by setgravity. This works great when the two nodes are in their place.

However, I want the particle emitter to be able to move. I unchecked local coords so they stay in place. However, the gravity and direction values still get updated in real time so when the particle emitter moves the old particles go in the wrong direction.

Is there any way to “lock” the gravity and direction values of a particle when creating them? Or will this always be the same for every particle of one particle node.