I am testing with bpy but I couldn't found a good tutorial.
From this tutorial
http://wiki.blender.org/index.php/Dev:2.5/Py/Scripts/Cookbook/Code_snippets/Armatures
I get
Object name: MeshObject
Armature name: I believe that is MyRigData
I want move the first bone named "Tip"
My code is
| Code: |
import bpy
bpy.ops.object.mode_set(mode="POSE")
rig = bpy.data.objects.get("MyRigData") # Get Armature
pb = rig.pose.bones["Tip"] |
Anyone help me?