Skip to content

Instantly share code, notes, and snippets.

@enzyme69
Created November 1, 2016 00:24
Show Gist options
  • Save enzyme69/3f1333eb6b6e21f504b3060e2318a2f6 to your computer and use it in GitHub Desktop.
Save enzyme69/3f1333eb6b6e21f504b3060e2318a2f6 to your computer and use it in GitHub Desktop.
AN Script Node to do get list of Edit Bone
# get armature
ob_arm = Object
# get bones
arm = bpy.data.armatures[Object.name]
editbones = arm.bones
# create list of bones
listofbones = []
for bone in editbones:
listofbones.append(bone)
ObjectList = listofbones
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment