ジャンプ先: 概要. 戻り値. フラグ. Python 例.
runup([cache=boolean], [fromPreviousFrame=boolean], [fromStartFrame=boolean], [maxFrame=time], [state=boolean])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
runup は、取り消し可能、照会不可能、および 編集不可能 です。
複数のフレームのフレームを通してシーンを再生し、その過程でダイナミック オブジェクトを強制的に評価します。最大フレームを指定しないと、現在のタイムまで再生されます。
cache, fromPreviousFrame, fromStartFrame, maxFrame, state
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。
|
import maya.cmds as cmds
cmds.runup( mxf=10, cache=True )
# Starts at the minimum start frame of all dynamic objects
# and plays through to frame 10. This guarantees that the system
# is in the same state it would be as if you had rewound and played
# forward from frame 0. The state of the dynamic object(s) will be
# cached after the runup.