The ikfkDisplayMethodcommand is used to specify how ik/fk blending should be shown In query mode, return type is based on queried flag.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
display (d) | unicode | ||
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
# Just display ik.
#
pm.ikfkDisplayMethod( display='ik' )
# Display ik and fk when the handle is selected
#
pm.ikfkDisplayMethod( display='ikfk' )