Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Never stop generating particles
#1
Pregunta 
Hello,

I'm really new in the Unity world so please be kind with me Sonrisa

I'm playing with the FluidViscosity sample scene and I'd like to generate particles with the emitter continuously.
Currently it does emit 2000 particles and then stops.
I'd like to have a continuous flow.

Is that possible?
How can I achieve that?

Any help would be really appreciated.

Best regards and thanks in advance.

Alex
Reply
#2
(19-10-2019, 10:54 AM)Alx06 Wrote: Hello,

I'm really new in the Unity world so please be kind with me Sonrisa

I'm playing with the FluidViscosity sample scene and I'd like to generate particles with the emitter continuously.
Currently it does emit 2000 particles and then stops.
I'd like to have a continuous flow.

Is that possible?
How can I achieve that?

Any help would be really appreciated.

Best regards and thanks in advance.

Alex

Hi Alex,

If you never stop to generate particles and never allow them to disappear, your performance will go down.

As in most particle systems (including Unity's), when a particle "dies" it is returned to the emitter's particle pool, ready for being re-emitted as soon as needed. If you simply want to have a continuous flow of particles so that they are re-emitted as soon as they disappear, either reduce their lifetime or increase the amount of particles in the emitter. This way particles won't Iive long enough for the emitter pool to run out of particles.

kind regards,
Reply