Created
November 1, 2016 00:24
-
-
Save enzyme69/3f1333eb6b6e21f504b3060e2318a2f6 to your computer and use it in GitHub Desktop.
AN Script Node to do get list of Edit Bone
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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