pymel.core.animation.ikfkDisplayMethod

ikfkDisplayMethod(*args, **kwargs)

The ikfkDisplayMethodcommand is used to specify how ik/fk blending should be shown In query mode, return type is based on queried flag.

Flags:

Long Name / Short Name Argument Types Properties
display / d unicode ../../../_images/create.gif ../../../_images/query.gif
  Specify how ik/fk blending should be shown when the handle is selected. Possible choices are none(do not display any blending), ik(only show ik),fk(only show fk), and ikfk(show both ik and fk). Flag can have multiple arguments, passed either as a tuple or a list.

Derived from mel command maya.cmds.ikfkDisplayMethod

Example:

import pymel.core as pm

# Just display ik.
#
pm.ikfkDisplayMethod( display='ik' )
# Display ik and fk when the handle is selected
#
pm.ikfkDisplayMethod( display='ikfk' )