pymel.core.effects.saveInitialState

saveInitialState(*args, **kwargs)

saveInitialState saves the current state of dynamics objects as the initial state. A dynamic object is a particle shape, rigid body, rigid constraint or rigid solver. If no objects are specified, it saves the initial state for any selected objects. It returns the names of the objects for which initial state was saved.

Flags:
Long name (short name) Argument Types Properties
attribute (atr) unicode ../../../_images/create.gif
 

Save the initial state of the specified attribute only. This is a multi-use flag.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list.

saveall (all) bool ../../../_images/create.gif
 
Save the initial state for all dynamics objects in the scene.

Derived from mel command maya.cmds.saveInitialState

Example:

import pymel.core as pm

import maya.cmds as cmds

pm.saveInitialState( 'particle1' )
# Saves current state as initial state for particle1.

pm.saveInitialState( all=True )
# Saves current state as initial state for all dynamics objects.

Previous topic

pymel.core.effects.saveFluid

Next topic

pymel.core.effects.setDynamic

Core

Core Modules

Other Modules

This Page