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:
authorCampbell Barton <ideasman42@gmail.com>2007-01-13 08:06:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-01-13 08:06:28 +0300
commita935c48fec910f67ba3679e295d9e35fe44ce214 (patch)
treee82ec40dd003e6ec67decc7d44ae09c7653af7cf /source/blender/python/api2_2x/Texture.c
parent156ac69aad5babbe7c610dfed1a8d808b4b58fb7 (diff)
added stress and tangent to MTex and texture mapping dict
Diffstat (limited to 'source/blender/python/api2_2x/Texture.c')
-rw-r--r--source/blender/python/api2_2x/Texture.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Texture.c b/source/blender/python/api2_2x/Texture.c
index 5fdfc7cfaea..830590aa189 100644
--- a/source/blender/python/api2_2x/Texture.c
+++ b/source/blender/python/api2_2x/Texture.c
@@ -1113,6 +1113,8 @@ static PyObject *M_Texture_TexCoDict( void )
PyConstant_Insert(d, "WIN", PyInt_FromLong(TEXCO_WINDOW));
PyConstant_Insert(d, "VIEW", PyInt_FromLong(TEXCO_VIEW));
PyConstant_Insert(d, "STICK", PyInt_FromLong(TEXCO_STICKY));
+ PyConstant_Insert(d, "STRESS", PyInt_FromLong(TEXCO_STRESS));
+ PyConstant_Insert(d, "TANGENT", PyInt_FromLong(TEXCO_TANGENT));
}
return TexCo;
}