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:
Diffstat (limited to 'source/blender/python/api2_2x/MTex.h')
-rw-r--r--source/blender/python/api2_2x/MTex.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/MTex.h b/source/blender/python/api2_2x/MTex.h
index 5e67ebc47ca..b6c98a40d2e 100644
--- a/source/blender/python/api2_2x/MTex.h
+++ b/source/blender/python/api2_2x/MTex.h
@@ -38,22 +38,26 @@
/* Python BPy_MTex structure definition */
/*****************************************************************************/
+#define MATERIAL_MTEX_TYPE 1
+#define WORLD_MTEX_TYPE 2
+#define LAMP_MTEX_TYPE 3
+
typedef struct {
PyObject_HEAD
MTex * mtex;
+ unsigned short type;
} BPy_MTex;
extern PyTypeObject MTex_Type;
#define BPy_MTex_Check(v) ((v)->ob_type == &MTex_Type)
-
/*****************************************************************************/
/* Module Blender.Texture.MTex - public functions */
/*****************************************************************************/
PyObject *MTex_Init( void );
-PyObject *MTex_CreatePyObject( struct MTex *obj );
+PyObject *MTex_CreatePyObject( struct MTex *obj, unsigned short type );
MTex *MTex_FromPyObject( PyObject * py_obj );