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:
authorNicholas Bishop <nicholasbishop@gmail.com>2010-10-19 05:57:15 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2010-10-19 05:57:15 +0400
commit8b0179a965180c325910e1c4127bdc2c53dfbb40 (patch)
tree530bfe7356efe6859e32981ca687f9055918a03c /source/blender/makesdna/DNA_modifier_types.h
parente01c00d19437c9aef1fc27568d7becbabdef9ba2 (diff)
== Sculpt ==
Fixed bug #24111, "Mirror clipping not working while sculpting a mirrored mesh" * Mirror modifiers can handle multiple-axis mirroring, updated sculpt to work with that * Marked the "axis" field of MirrorModifierData deprecated, since it looks like bitflags are supposed to be used now
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 27f9c9cd5f3..0708698c40c 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -220,7 +220,8 @@ typedef struct ArrayModifierData {
typedef struct MirrorModifierData {
ModifierData modifier;
- short axis, flag;
+ short axis; /* deprecated, use flag instead */
+ short flag;
float tolerance;
struct Object *mirror_ob;
} MirrorModifierData;