Go to: Synopsis. Return value. Flags. Python examples.
animDisplay([modelUpdate=string], [refAnimCurvesEditable=boolean], [timeCode=boolean], [timeCodeOffset=string])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
animDisplay is undoable, queryable, and editable.
This command changes certain display options used by animation windows.
None
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
modelUpdate(upd)
|
string
|
![]() ![]() ![]() |
||
|
||||
refAnimCurvesEditable(rae)
|
boolean
|
![]() ![]() ![]() |
||
|
||||
timeCode(tc)
|
boolean
|
![]() ![]() ![]() |
||
|
||||
timeCodeOffset(tco)
|
string
|
![]() ![]() ![]() |
||
|
![]() |
![]() |
![]() |
![]() |
import maya.cmds as cmds # If the current time unit were ntsc (30 frames per # second) frame 50 would be displayed as "00:00:01:20". # cmds.animDisplay( timeCode=True ) # Set the display option so that interactive operations # in the graph editor or dope sheet will cause the # model views to be updated simultaneously # cmds.animDisplay( modelUpdate="interactive" )