From 4bfa934ff329d008009dd3287881fe25eff6df09 Mon Sep 17 00:00:00 2001 From: Geoffrey Bantle Date: Mon, 10 Sep 2007 22:56:29 +0000 Subject: [PATCH] -> Added mesh properties to modifiers Mesh properties layers were not getting copied in the modifier stack. --- source/blender/blenkernel/intern/customdata.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) {