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:
authorBen Batt <benbatt@gmail.com>2007-03-18 16:46:26 +0300
committerBen Batt <benbatt@gmail.com>2007-03-18 16:46:26 +0300
commit77cd80e1b567817c2e1b6c5af05d1810051bd334 (patch)
tree386c12fd8786e98dc09b1bf92e683ff0d5d77c6e /source/blender/makesdna
parent0b55cac34c1d4452264d228b926c50bf629fa749 (diff)
== Mirror modifier upgrade ==
Upgraded the Mirror modifier to support mirroring of UV coordinates in the faces created by the modifier.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 9b79ee34583..278e04c3f44 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -159,7 +159,9 @@ typedef struct MirrorModifierData {
} MirrorModifierData;
/* MirrorModifierData->flag */
-#define MOD_MIR_CLIPPING 1
+#define MOD_MIR_CLIPPING 1<<0
+#define MOD_MIR_MIRROR_U 1<<1
+#define MOD_MIR_MIRROR_V 1<<2
typedef struct EdgeSplitModifierData {
ModifierData modifier;