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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-07-28 04:43:45 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-07-28 04:43:45 +0400
commita99a466feec7c2e88af967769205f43fa74f1161 (patch)
treeafb78af7143c2f0cd7d1d2c431d15550de4a9b94 /source/blender/makesdna/DNA_linestyle_types.h
parentbe2e221608971d6e6618887ce40998c993c68ac8 (diff)
* Made the Parameter Editor mode much more functional. Edge selection
criteria, as well as the color/alpha/thickness Along Stroke modifiers now work. * Added more curve blend types. The default is set to "MIX".
Diffstat (limited to 'source/blender/makesdna/DNA_linestyle_types.h')
-rw-r--r--source/blender/makesdna/DNA_linestyle_types.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_linestyle_types.h b/source/blender/makesdna/DNA_linestyle_types.h
index 2d6f4951875..6f55b3459b4 100644
--- a/source/blender/makesdna/DNA_linestyle_types.h
+++ b/source/blender/makesdna/DNA_linestyle_types.h
@@ -62,12 +62,14 @@ typedef struct LineStyleModifier {
#define LS_MODIFIER_INVERT 2
/* blend (for alpha & thickness) */
+#define LS_VALUE_BLEND 0
#define LS_VALUE_ADD 1
-#define LS_VALUE_MUL 2
+#define LS_VALUE_MULT 2
#define LS_VALUE_SUB 3
#define LS_VALUE_DIV 4
-#define LS_VALUE_MIN 5
-#define LS_VALUE_MAX 6
+#define LS_VALUE_DIFF 5
+#define LS_VALUE_MIN 6
+#define LS_VALUE_MAX 7
/* Along Stroke modifiers */