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:
authorJacques Guignot <guignot@wanadoo.fr>2003-06-22 00:47:12 +0400
committerJacques Guignot <guignot@wanadoo.fr>2003-06-22 00:47:12 +0400
commit84d432d6b36eada855f3902ec51d1c4955c7ca6b (patch)
tree6a433037754f8f6acb6501e6efea4ff15bb224e3 /source/blender/python/api2_2x/Blender.c
parent9392d5662af0c2723b9a139ce07fcfde6e19a522 (diff)
Integration of the new modules
Diffstat (limited to 'source/blender/python/api2_2x/Blender.c')
-rw-r--r--source/blender/python/api2_2x/Blender.c4
1 files changed, 3 insertions, 1 deletions
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());
}