Go to: Synopsis. Return value. MEL examples.

Synopsis

dynCache

dynCache is undoable, NOT queryable, and NOT editable.

Cache the current state of all particle shapes at the current time.

Return value

None

MEL examples

// Create an emitter and connect it to a particle shape
emitter -typ omni -pos 1 1 1 -n myEmitter;
particle -n myParticles;
connectDynamic -em myEmitter myParticles;

// Cache all attributes of the particle shape at time 50
playbackOptions -min 0 -max 50 -ast 0 -aet 100;
currentTime 0;
play -w;
dynCache;