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/makesrna/intern/rna_armature.c
parent2138afc0875b6be4ff58a6d9238defb9103006d6 (diff)
Added support for custom RNA properties on Bones, only worked for
PoseChannel previously.
Diffstat (limited to 'source/blender/makesrna/intern/rna_armature.c')
-rw-r--r--source/blender/makesrna/intern/rna_armature.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c
index 6c9d9263eeb..889f23e0d39 100644
--- a/source/blender/makesrna/intern/rna_armature.c
+++ b/source/blender/makesrna/intern/rna_armature.c
@@ -42,6 +42,7 @@
#include "BKE_context.h"
#include "BKE_depsgraph.h"
+#include "BKE_idprop.h"
#include "BKE_main.h"
#include "ED_armature.h"
@@ -67,6 +68,30 @@ static char *rna_Bone_path(PointerRNA *ptr)
return BLI_sprintfN("bones[\"%s\"]", ((Bone*)ptr->data)->name);
}
+static IDProperty *rna_Bone_idproperties(PointerRNA *ptr, int create)
+{
+ Bone *bone= ptr->data;
+
+ if(create && !bone->prop) {
+ IDPropertyTemplate val = {0};
+ bone->prop= IDP_New(IDP_GROUP, val, "RNA_Bone ID properties");
+ }
+
+ return bone->prop;
+}
+
+static IDProperty *rna_EditBone_idproperties(PointerRNA *ptr, int create)
+{
+ EditBone *ebone= ptr->data;
+
+ if(create && !ebone->prop) {
+ IDPropertyTemplate val = {0};
+ ebone->prop= IDP_New(IDP_GROUP, val, "RNA_EditBone ID properties");
+ }
+
+ return ebone->prop;
+}
+
static void rna_bone_layer_set(short *layer, const int *values)
{
int i, tot= 0;
@@ -442,6 +467,7 @@ static void rna_def_bone(BlenderRNA *brna)
RNA_def_struct_ui_text(srna, "Bone", "Bone in an Armature datablock.");
RNA_def_struct_ui_icon(srna, ICON_BONE_DATA);
RNA_def_struct_path_func(srna, "rna_Bone_path");
+ RNA_def_struct_idproperties_func(srna, "rna_Bone_idproperties");
/* pointers/collections */
/* parent (pointer) */
@@ -509,6 +535,7 @@ static void rna_def_edit_bone(BlenderRNA *brna)
srna= RNA_def_struct(brna, "EditBone", NULL);
RNA_def_struct_sdna(srna, "EditBone");
+ RNA_def_struct_idproperties_func(srna, "rna_Bone_idproperties");
RNA_def_struct_ui_text(srna, "Edit Bone", "Editmode bone in an Armature datablock.");
RNA_def_struct_ui_icon(srna, ICON_BONE_DATA);