Particle Instancing

Hi all, I want to start the emission at each point on a line at the exact same time. Is this possible? At most I can get them to emit one after another not all at once on each point of the line… :frowning: I basically want to generate number of points with particles that scroll down a word, stop then start again and get affect it with fields when hand gestures are introduced…

The only way I am aware of how you could do this emitting them all once per frame. The Birth Rate parameter is how many particles are emitted per second, so if you are running at 60 frames per second, you can set your birth rate to 60 * numPointsOfEmitter and you should get a particle from each point every frame.