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>2006-12-30 04:04:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-12-30 04:04:19 +0300
commit6985409d6a66185c0350e8aa23808d61616117a6 (patch)
treea4e3c2058cd0571d519a9cfb82ae5d89f10a716f /source/blender/python/api2_2x/Pose.c
parent04f9d7c60440310e66352d0b9143b878ef95c97a (diff)
added pose_bone.displayObject for getting/setting custom bones
Diffstat (limited to 'source/blender/python/api2_2x/Pose.c')
-rw-r--r--source/blender/python/api2_2x/Pose.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Pose.c b/source/blender/python/api2_2x/Pose.c
index 76f875650e7..ed4cf8cafa0 100644
--- a/source/blender/python/api2_2x/Pose.c
+++ b/source/blender/python/api2_2x/Pose.c
@@ -947,6 +947,30 @@ static PyObject *PoseBone_getParent(BPy_PoseBone *self, void *closure)
Py_RETURN_NONE;
}
+//------------------------PoseBone.displayObject (getter)
+//Gets the pose bones selection
+static PyObject *PoseBone_getDisplayObject(BPy_PoseBone *self, void *closure)
+{
+ if (self->posechannel->custom)
+ return Object_CreatePyObject(self->posechannel->custom);
+ else
+ Py_RETURN_NONE;
+}
+
+//------------------------PoseBone.displayObject (setter)
+//Gets the pose bones selection
+static int PoseBone_setDisplayObject(BPy_PoseBone *self, PyObject *value, void *closure)
+{
+ if (value == Py_None) {
+ self->posechannel->custom = NULL;
+ } else if (BPy_Object_Check(value)) {
+ self->posechannel->custom = Object_FromPyObject(value);
+ } else {
+ return EXPP_ReturnIntError(PyExc_AttributeError, "can only assign a Blender Object or None");
+ }
+ return 0;
+}
+
//------------------TYPE_OBECT IMPLEMENTATION---------------------------
//------------------------tp_getset
//This contains methods for attributes that require checking
@@ -977,6 +1001,8 @@ static PyGetSetDef BPy_PoseBone_getset[] = {
"The list of contraints that pertain to this pose bone", NULL},
{"parent", (getter)PoseBone_getParent, (setter)NULL,
"The bones parent (read only for posebones)", NULL},
+ {"displayObject", (getter)PoseBone_getDisplayObject, (setter)PoseBone_setDisplayObject,
+ "The poseMode object to draw in place of this bone", NULL},
{NULL, NULL, NULL, NULL, NULL}
};
//------------------------tp_dealloc