Controls a single joint or chain of joints with forward kinematic(FK) behavior where each joint in the chain will move all children joints along with it when it moves.
The core component for building rigs, FK can be applied to any joint or chain to provide rigging control over it.
A single joint OR a chain of joints where the end joint is under the hierarchy of the start joint.
Single Joint
Chain of Joints
Technical details and additional functionality will go here.
Run on selection of any skeleton joint.
side = Name of the side from region setup, e.g. 'left'
region = Name of the region from region setup, e.g. 'arm'
import pymel.core as pm
import rigging
skeleton_dict = rigging.skeleton.get_skeleton_dict(pm.ls(sl=True, type='joint')[0])
rigging.fk.FK().rig(skeleton_dict, side, region)