* Implement Blender_Redraw(), minor changes in other files

* Implemented submodule Text
This commit is contained in:
2003-05-09 04:34:40 +00:00
parent ceeb5e7568
commit 81d2589d6a
8 changed files with 633 additions and 15 deletions

View File

@@ -132,13 +132,13 @@ static PyObject *M_Lamp_Get(PyObject *self, PyObject *args)
/*****************************************************************************/
PyObject *M_Lamp_Init (void)
{
PyObject *module;
PyObject *submodule;
printf ("In M_Lamp_Init()\n");
module = Py_InitModule3("Lamp", M_Lamp_methods, M_Lamp_doc);
submodule = Py_InitModule3("Blender.Lamp", M_Lamp_methods, M_Lamp_doc);
return (module);
return (submodule);
}
/*****************************************************************************/