Way to make Particle System start as if it were 5 seconds into running?

I have a Particle System that only looks how I actually want it to look, when it’s ran for about 5 seconds.

Is there a way to make it so that as soon as the Particle System starts, it ‘jumps ahead’ to how it would look 5 seconds in? Prewarm does not quite do the job unfortunately.

This works:

public class SnowStart : MonoBehaviour
{
public float initTime;
public ParticleSystem PE;

void Start()
{
    PE.Simulate(initTime);
    PE.Play();
}
}