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
path: root/source
diff options
context:
space:
mode:
authorGeoffrey Bantle <hairbat@yahoo.com>2007-09-11 02:56:29 +0400
committerGeoffrey Bantle <hairbat@yahoo.com>2007-09-11 02:56:29 +0400
commit4bfa934ff329d008009dd3287881fe25eff6df09 (patch)
tree44724bce789105403181a1a6f03a5a1f2759ac7d /source
parent5e7dc2404269faea8753896bc750b9aa13cafb51 (diff)
-> Added mesh properties to modifiers
Mesh properties layers were not getting copied in the modifier stack.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/customdata.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/customdata.c b/source/blender/blenkernel/intern/customdata.c
index 2c8199f90f3..aeee23e6f21 100644
--- a/source/blender/blenkernel/intern/customdata.c
+++ b/source/blender/blenkernel/intern/customdata.c
@@ -387,7 +387,8 @@ const CustomDataMask CD_MASK_EDITMESH =
CD_MASK_MCOL|CD_MASK_PROP_FLT | CD_MASK_PROP_INT | CD_MASK_PROP_STR;
const CustomDataMask CD_MASK_DERIVEDMESH =
CD_MASK_MSTICKY | CD_MASK_MDEFORMVERT | CD_MASK_MTFACE |
- CD_MASK_MCOL | CD_MASK_ORIGINDEX;
+ CD_MASK_MCOL | CD_MASK_ORIGINDEX|
+ CD_MASK_PROP_FLT | CD_MASK_PROP_INT | CD_MASK_PROP_STR;
static const LayerTypeInfo *layerType_getInfo(int type)
{