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:
authorMichel Selten <michel@mselten.demon.nl>2003-06-29 20:49:21 +0400
committerMichel Selten <michel@mselten.demon.nl>2003-06-29 20:49:21 +0400
commit3284916aeb459fb0d9484ef2d5be26e82825a19a (patch)
tree7fe54230938944655b94523acc014422f7858927 /source/blender/python/api2_2x/modules.h
parent389c7e101e9172b27ee52809a89e76d1086df61c (diff)
* Added some internal functions to the Material module
* Updated the Object module with some more functions. Only 1 function left to implement. * Removed the getDeformData function declaration.
Diffstat (limited to 'source/blender/python/api2_2x/modules.h')
-rw-r--r--source/blender/python/api2_2x/modules.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/modules.h b/source/blender/python/api2_2x/modules.h
index bae6d0e9cf8..8dc829f2d21 100644
--- a/source/blender/python/api2_2x/modules.h
+++ b/source/blender/python/api2_2x/modules.h
@@ -84,6 +84,13 @@ int NMesh_CheckPyObject (PyObject *pyobj);
/* Material */
PyObject * Material_Init (void);
+PyObject * Material_CreatePyObject (struct Material *mat);
+int Material_CheckPyObject (PyObject *pyobj);
+Material **EXPP_newMaterialList_fromPyList (PyObject *list);
+Material **EXPP_newMaterialList(int len);
+int EXPP_releaseMaterialList (Material **matlist, int len);
+int EXPP_synchronizeMaterialLists (Object *object, void *data);
+PyObject * EXPP_PyList_fromMaterialList(Material **matlist, int len);
/* Camera Data */
PyObject * Camera_Init (void);