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:
authorToni Alatalo <antont@kyperjokki.fi>2005-12-18 23:14:22 +0300
committerToni Alatalo <antont@kyperjokki.fi>2005-12-18 23:14:22 +0300
commitfae20e494e4d5d5f48a8a3c99938796d596537c2 (patch)
treeddce7c307c1e0b8b7c77ac985382b06dfe1401d4 /source/blender/python/api2_2x/Types.c
parent3bba3813bde61d2bedfd1a2fa434c929ae12230a (diff)
orange: animation baking code. also a patch to autokey, to only key the keys made.
Diffstat (limited to 'source/blender/python/api2_2x/Types.c')
-rw-r--r--source/blender/python/api2_2x/Types.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Types.c b/source/blender/python/api2_2x/Types.c
index 6f5bbac6a3a..8eb2ed3c2cb 100644
--- a/source/blender/python/api2_2x/Types.c
+++ b/source/blender/python/api2_2x/Types.c
@@ -48,6 +48,7 @@ struct PyMethodDef Null_methods[] = { {NULL, NULL, 0, NULL} };
void types_InitAll( void )
{
Action_Type.ob_type = &PyType_Type;
+ Pose_Type.ob_type = &PyType_Type;
Armature_Type.ob_type = &PyType_Type;
BezTriple_Type.ob_type = &PyType_Type;
Bone_Type.ob_type = &PyType_Type;
@@ -183,6 +184,8 @@ PyObject *Types_Init( void )
( PyObject * ) &BezTriple_Type );
PyDict_SetItemString( dict, "ActionType",
( PyObject * ) &Action_Type );
+ PyDict_SetItemString( dict, "PoseType",
+ ( PyObject * ) &Pose_Type );
PyDict_SetItemString( dict, "propertyType",
( PyObject * ) &property_Type );
PyDict_SetItemString( dict, "pointType",