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:
authorJoseph Gilbert <ascotan@gmail.com>2004-06-11 17:15:50 +0400
committerJoseph Gilbert <ascotan@gmail.com>2004-06-11 17:15:50 +0400
commit3a816f1c307c84ff637d12b1d6d8ffef739fbcd6 (patch)
tree9c172e5995691064d8463a3481f5bac6ffef1522 /source/blender/python/api2_2x/Types.c
parent648a2d3819d2910f56c06da8844b96d7fa18c84f (diff)
- new internal Property module
- Object support for add/remove/modify object Properties
Diffstat (limited to 'source/blender/python/api2_2x/Types.c')
-rw-r--r--source/blender/python/api2_2x/Types.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Types.c b/source/blender/python/api2_2x/Types.c
index 5705ecee415..a2dc2b0f212 100644
--- a/source/blender/python/api2_2x/Types.c
+++ b/source/blender/python/api2_2x/Types.c
@@ -81,6 +81,7 @@ void types_InitAll(void)
quaternion_Type.ob_type = &PyType_Type;
rgbTuple_Type.ob_type = &PyType_Type;
vector_Type.ob_type = &PyType_Type;
+ property_Type.ob_type = &PyType_Type;
}
/*****************************************************************************/
@@ -139,6 +140,7 @@ PyObject *Types_Init (void)
PyDict_SetItemString(dict, "quaternionType", (PyObject *)&quaternion_Type);
PyDict_SetItemString(dict, "BezTripleType", (PyObject *)&BezTriple_Type);
PyDict_SetItemString(dict, "ActionType", (PyObject *)&Action_Type);
+ PyDict_SetItemString(dict, "propertyType", (PyObject *)&property_Type);
return submodule;
}