Scrolls the Particle2D forward a few seconds

Is there any way in CC to fast forward the particle animation when the game starts? For example, I just want to make snow that is already falling, and not just beginning.

I found a rather interesting solution. Everything works perfectly :+1:

for (let i = 0; i < 1e3; i++)
    this.particle_system2D._simulator.step(1);