This command allows you to specify the current view range within an animation editor. In query mode, return type is based on queried flag.
Flags:
Long Name / Short Name | Argument Types | Properties | |
---|---|---|---|
endTime / et | time | ||
|
|||
maxValue / max | float | ||
|
|||
minValue / min | float | ||
|
|||
nextView / nv | bool | ![]() |
|
|
|||
previousView / pv | bool | ![]() |
|
|
|||
startTime / st | time | ||
|
Derived from mel command maya.cmds.animView
Example:
import pymel.core as pm
# Look at the area between 0 and 5 seconds, and the range 0 - 100
pm.animView( 'graphView', startTime='0sec', endTime='5sec', minValue=0, maxValue=100 )