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:
authorTon Roosendaal <ton@blender.org>2003-07-20 19:55:02 +0400
committerTon Roosendaal <ton@blender.org>2003-07-20 19:55:02 +0400
commitd5c829e413e3755750a46e2dee26905b16b1ff57 (patch)
tree692a83ce474ac3984bc5a233795c9d334c99a8ea /source/blender/makesdna/DNA_lamp_types.h
parent502b6722190c5431c237cf4a8e0e6ea79119f35a (diff)
- added the 'no diffuse' and 'no specularity' options for Lamps, as were
in Tuhopuu - added the Tuhopuu feature which displays material-buttons and lamp- buttons integrated. saves button presses that way!
Diffstat (limited to 'source/blender/makesdna/DNA_lamp_types.h')
-rw-r--r--source/blender/makesdna/DNA_lamp_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_lamp_types.h b/source/blender/makesdna/DNA_lamp_types.h
index f9840e97ace..90529474d67 100644
--- a/source/blender/makesdna/DNA_lamp_types.h
+++ b/source/blender/makesdna/DNA_lamp_types.h
@@ -86,8 +86,12 @@ typedef struct Lamp {
#define LA_OSATEX 512
/* use bit 11 for shadow tests... temp only -nzc- */
#define LA_DEEP_SHADOW 1024
+#define LA_NO_DIFF 2048
+#define LA_NO_SPEC 4096
/* mapto */
#define LAMAP_COL 1
-#endif
+
+
+#endif /* DNA_LAMP_TYPES_H */