...
- Right-click on “Simulation” and choose “Edit Curve...”
- Go to the empty line at the bottom of the appearing → “Curve Editor”. There, an → expression can be added – this is the most effective way of animating simulation states.
- Change from active to inactive at a certain frame, e.g. 50:
if(f>49,0,1)
- Change from inactive to active at frame 50:
if(f>49,1,0)
- Change from cache to inactive at frame 50:
if (f>49,0,2)
...