In Maya, this listRelatives -c is Just enter the object name you want to specify in place of objectName
childrenList = bpy.data.objects['objectName'].children for child in childrenList: print(child.name)
Personal notes
Recommended Posts