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:
authorWillian Padovani Germano <wpgermano@gmail.com>2003-06-13 08:21:48 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2003-06-13 08:21:48 +0400
commitf70302670e0ecb263819c3ed74e0079d46181e61 (patch)
treef11c7f6304ad5d0b681d369619452d3fb2997482 /source/blender/python/api2_2x/Metaball.c
parentbbf8fe932f226314a097ac868d1909546949d53f (diff)
* Bugs item #169 fixed:
Now Blender.NMesh.PutRaw() doesn't destroy vertex color info anymore. Both exppython's NMesh.c and bpython's opy_nmesh.c were updated. * Minor changes in other files.
Diffstat (limited to 'source/blender/python/api2_2x/Metaball.c')
-rw-r--r--source/blender/python/api2_2x/Metaball.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Metaball.c b/source/blender/python/api2_2x/Metaball.c
index 629d1868425..66a4e4d6acc 100644
--- a/source/blender/python/api2_2x/Metaball.c
+++ b/source/blender/python/api2_2x/Metaball.c
@@ -144,6 +144,8 @@ PyObject *M_Metaball_Init (void)
{
PyObject *submodule;
+ Metaball_Type.ob_type = &PyType_Type;
+
printf ("In M_Metaball_Init()\n");
submodule = Py_InitModule3("Blender.Metaball",
M_Metaball_methods, M_Metaball_doc);