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:
authorJanne Karhu <jhkarh@gmail.com>2010-11-24 14:37:09 +0300
committerJanne Karhu <jhkarh@gmail.com>2010-11-24 14:37:09 +0300
commit8df8b42144500b61f6126f48d984bada274fb925 (patch)
tree42bf1cc7504446e90409b33e296d2d84e9fd0b0e /source/blender/modifiers
parent2512c6ce881e11b7cdc96d12a1de2f712237d7c3 (diff)
Fix for [#24877] Cloth + hair bug
* Particles needed the original index layer, but didn't ask for it.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_particlesystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_particlesystem.c b/source/blender/modifiers/intern/MOD_particlesystem.c
index cd56bd3c8bc..f2b580aca9a 100644
--- a/source/blender/modifiers/intern/MOD_particlesystem.c
+++ b/source/blender/modifiers/intern/MOD_particlesystem.c
@@ -112,7 +112,7 @@ static CustomDataMask requiredDataMask(Object *ob, ModifierData *md)
/* particles only need this if they are after a non deform modifier, and
* the modifier stack will only create them in that case. */
- dataMask |= CD_MASK_ORIGSPACE;
+ dataMask |= CD_MASK_ORIGSPACE|CD_MASK_ORIGINDEX;
dataMask |= CD_MASK_ORCO;