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>2011-07-31 06:03:28 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2011-07-31 06:03:28 +0400
commitcae05598b1d10a70a0e37f28b6e49a5b5715a30f (patch)
treeda1209caf4f9caf1e55beca38d260bd77dfedead /source/blender/makesdna/DNA_modifier_types.h
parent601eb684208eb3f5e8025b81be30817b87daeb98 (diff)
Added DNA and RNA for skin modifier, stubbed in skin modifier functions
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 3787675f339..483bd339b3d 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -71,6 +71,7 @@ typedef enum ModifierType {
eModifierType_Solidify,
eModifierType_Screw,
eModifierType_Warp,
+ eModifierType_Skin,
NUM_MODIFIER_TYPES
} ModifierType;
@@ -785,4 +786,17 @@ typedef enum {
/* PROP_RANDOM not used */
} WarpModifierFalloff;
+typedef enum SkinModifierFlags {
+ MOD_SKIN_DRAW_SKIN = (1<<0),
+ MOD_SKIN_DRAW_NODES = (1<<1),
+} SkinModifierFlags;
+
+typedef struct SkinModifierData {
+ ModifierData modifier;
+ float threshold;
+ int subdiv;
+ int flag;
+ int pad;
+} SkinModifierData;
+
#endif