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:
authorNathan Letwory <nathan@letworyinteractive.com>2004-07-07 12:49:33 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2004-07-07 12:49:33 +0400
commit6757a8159b7a64a4ac1444046f967bb2b88909ad (patch)
tree710d9ca648ea7ed5d98a211c03d9a98f136b02bb /source/blender/makesdna/DNA_ipo_types.h
parent2388cada013f66370d912c8a7039cfaf3cc1ff07 (diff)
* fixed bug in rainbow color for material and world ipoview
* removed 32 channel limit (can now have 50, or of you know what number to change, 999 ;) * added new IPOs: mirror fresnel and fac, transparency fresnel and fac, and glow factor transparent materials (add)
Diffstat (limited to 'source/blender/makesdna/DNA_ipo_types.h')
-rw-r--r--source/blender/makesdna/DNA_ipo_types.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_ipo_types.h b/source/blender/makesdna/DNA_ipo_types.h
index c9b3f2899f0..b18cacedb63 100644
--- a/source/blender/makesdna/DNA_ipo_types.h
+++ b/source/blender/makesdna/DNA_ipo_types.h
@@ -114,7 +114,7 @@ typedef short IPO_Channel;
/* ******************** */
-#define MA_TOTIPO 35
+#define MA_TOTIPO 40
#define MA_COL_R 1
#define MA_COL_G 2
@@ -137,6 +137,11 @@ typedef short IPO_Channel;
#define MA_HASIZE 19
#define MA_TRANSLU 20
#define MA_RAYM 21
+#define MA_FRESMIR 22
+#define MA_FRESMIRI 23
+#define MA_FRESTRA 24
+#define MA_FRESTRAI 25
+#define MA_ADD 26
#define MA_MAP1 0x20
#define MA_MAP2 0x40
@@ -310,5 +315,7 @@ typedef short IPO_Channel;
#define IPO_EDIT 4
#define IPO_LOCK 8
+#define IPO_IS_SELECTED 6 /* note, this is number of bit! */
+
#endif