Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-11-25 14:05:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-25 14:05:11 +0300
commitb40307df1630e7bd51a181878bd61693b32dd817 (patch)
tree7c45568b31032a8bd2e7a709de9f77f0b2d21dc0 /source/blender/editors/include/ED_armature.h
parent50e3bb7f5f34516718c9d0cd36c0ff1677bf2e55 (diff)
add access to bone add/remove from rna. eg.
bone = arm.edit_bones.new("SomeBone") arm.edit_bones.remove(bone) regify (WIP)
Diffstat (limited to 'source/blender/editors/include/ED_armature.h')
-rw-r--r--source/blender/editors/include/ED_armature.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h
index 2aa47311515..cbc86e58233 100644
--- a/source/blender/editors/include/ED_armature.h
+++ b/source/blender/editors/include/ED_armature.h
@@ -116,7 +116,8 @@ void ED_armature_sync_selection(struct ListBase *edbo);
void ED_armature_validate_active(struct bArmature *arm);
void add_primitive_bone(struct Scene *scene, struct View3D *v3d, struct RegionView3D *rv3d);
-EditBone *addEditBone(struct bArmature *arm, char *name); /* used by COLLADA importer */
+struct EditBone *ED_armature_edit_bone_add(struct bArmature *arm, char *name);
+void ED_armature_edit_bone_remove(struct bArmature *arm, EditBone *bone);
void transform_armature_mirror_update(struct Object *obedit);
void clear_armature(struct Scene *scene, struct Object *ob, char mode);