Forum Moderators: Lobo3433 Forum Coordinators: LuxXeon
Blender F.A.Q (Last Updated: 2025 Jan 05 8:18 pm)
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
Here is python script for blender to create bone.
bpy.ops.object.mode_set(mode='EDIT') bone = amt.edit_bones.new('Up_Arm.L') head_x=135; head_y=0; head_z=220; tail_x=315; tail_y=0; tail_z=220; bone.head = (head_x, head_y, head_z) bone.tail = (tail_x, tail_y, tail_z)
I am looking for more script to connect bones together, make armatures stay with thier objects, and make armatures move. full code http://www.pasteall.org/73878.