From 84d432d6b36eada855f3902ec51d1c4955c7ca6b Mon Sep 17 00:00:00 2001 From: Jacques Guignot Date: Sat, 21 Jun 2003 20:47:12 +0000 Subject: [PATCH] Integration of the new modules --- source/blender/python/api2_2x/Blender.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/blender/python/api2_2x/Blender.c b/source/blender/python/api2_2x/Blender.c index a8d6bf1f886..f7059bf0b6a 100644 --- a/source/blender/python/api2_2x/Blender.c +++ b/source/blender/python/api2_2x/Blender.c @@ -195,7 +195,7 @@ PyObject *Blender_ReleaseGlobalDict(PyObject *self, PyObject *args) "expected int argument (or nothing)"); } - return Py_BuildValue("i", (EXPP_releaseGlobalDict ? 1:0)); + return Py_BuildValue("i", (EXPP_releaseGlobalDict?1:0)); } /*****************************************************************************/ @@ -229,5 +229,7 @@ void M_Blender_Init (void) PyDict_SetItemString (dict, "Window", M_Window_Init()); PyDict_SetItemString (dict, "Draw", M_Draw_Init()); PyDict_SetItemString (dict, "BGL", M_BGL_Init()); + PyDict_SetItemString (dict, "Effect", M_Effect_Init()); PyDict_SetItemString (dict, "Text", M_Text_Init()); + PyDict_SetItemString (dict, "World", M_World_Init()); }