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 appear in Create mode of commandFlag 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

import maya.cmds as cmds

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

Previous topic

pymel.core.animation.ikSystemInfo

Next topic

pymel.core.animation.insertJoint

Core

Core Modules

Other Modules

This Page