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
path: root/source
diff options
context:
space:
mode:
authorKen Hughes <khughes@pacific.edu>2008-09-06 00:41:09 +0400
committerKen Hughes <khughes@pacific.edu>2008-09-06 00:41:09 +0400
commit3f9d32783adf96a2247d5c20a212bef4765f0248 (patch)
tree72496992e5d48d003e92937a77ba66c1fe00e4b2 /source
parentd8b9ca34a0022742e8641ce587c41d0b1a3e8919 (diff)
Python API
---------- Add missing Textures.ExtendModes.CHECKER constant.
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/api2_2x/Texture.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Texture.c b/source/blender/python/api2_2x/Texture.c
index 7ba8ad88ea6..cc394801d88 100644
--- a/source/blender/python/api2_2x/Texture.c
+++ b/source/blender/python/api2_2x/Texture.c
@@ -1195,6 +1195,7 @@ static PyObject *M_Texture_ExtendModesDict( void )
PyConstant_Insert(d, "CLIP", PyInt_FromLong(TEX_CLIP));
PyConstant_Insert(d, "CLIPCUBE", PyInt_FromLong(TEX_CLIPCUBE));
PyConstant_Insert(d, "REPEAT", PyInt_FromLong(TEX_REPEAT));
+ PyConstant_Insert(d, "CHECKER", PyInt_FromLong(TEX_CHECKER));
}
return ExtendModes;
}