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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-10-28 18:33:45 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-10-28 18:33:45 +0300
commitd6cde962865090347c82a324dd360f28df257369 (patch)
treef0ff08f27d008799c52c19b59970203b078dd331 /source/blender/makesdna/DNA_armature_types.h
parent2138afc0875b6be4ff58a6d9238defb9103006d6 (diff)
Added support for custom RNA properties on Bones, only worked for
PoseChannel previously.
Diffstat (limited to 'source/blender/makesdna/DNA_armature_types.h')
-rw-r--r--source/blender/makesdna/DNA_armature_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_armature_types.h b/source/blender/makesdna/DNA_armature_types.h
index 590e7dadcdc..0f80fb4821f 100644
--- a/source/blender/makesdna/DNA_armature_types.h
+++ b/source/blender/makesdna/DNA_armature_types.h
@@ -44,6 +44,7 @@ struct AnimData;
typedef struct Bone {
struct Bone *next, *prev; /* Next/prev elements within this list */
+ IDProperty *prop; /* User-Defined Properties on this Bone */
struct Bone *parent; /* Parent (ik parent if appropriate flag is set */
ListBase childbase; /* Children */
char name[32]; /* Name of the bone - must be unique within the armature */