Skip to content

Parent command note

Description

cmds.parent is a command that is used to parent objects to other objects.

Syntax

python

a = [u'render_group']
b = [u'cube1', u'cube2', u'cube3']
cmds.parent(b, a)
# this will parent cube1, cube2, cube3 to render_group
# And will not create a new transform node

# to parent shape
cmds.parent( shape, parent, shape=True, relative=True )
# But, when using shape=True, maya will create a transform node and parent the shape to it.

References