Hey,
One thing that I have been noticing is that if the grapheditor is set to Normalize View it takes a while for it to apply the pose. When it is in Absolute View it is really fast. Is it possible to have it when you are applying a pose, animation, etc. that it will switch it to Absolute View and then switch it back to Normalize View if that is what the user is currently using?
Just need to be doing something like this.
is_normalize = cmds.animCurveEditor('graphEditor1GraphEd', q=True, displayNormalized=True)
cmds.animCurveEditor('graphEditor1GraphEd', e=True, displayNormalized=False)
try:
apply_pose()
finally:
cmds.animCurveEditor('graphEditor1GraphEd', e=True, displayNormalized=is_normalize)
Hey,
One thing that I have been noticing is that if the grapheditor is set to
Normalize Viewit takes a while for it to apply the pose. When it is inAbsolute Viewit is really fast. Is it possible to have it when you are applying a pose, animation, etc. that it will switch it toAbsolute Viewand then switch it back toNormalize Viewif that is what the user is currently using?Just need to be doing something like this.