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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-12-14 16:45:45 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-12-14 16:45:45 +0300
commitbe6bf5faf65801d917ef515b7394cac53cbe0715 (patch)
tree0f7ac41514662748b534f5f4e54419c92040e9ba /source
parentf922d5d454593258586eae1c5390e913e0fa044d (diff)
Fix #20380: Duplicating mesh with Particle Instance Mod, Pole Axis not copied.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/modifier.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c
index 9390c7d67c4..e75203c6cde 100644
--- a/source/blender/blenkernel/intern/modifier.c
+++ b/source/blender/blenkernel/intern/modifier.c
@@ -6570,6 +6570,7 @@ static void particleInstanceModifier_copyData(ModifierData *md, ModifierData *ta
tpimd->ob = pimd->ob;
tpimd->psys = pimd->psys;
tpimd->flag = pimd->flag;
+ tpimd->axis = pimd->axis;
tpimd->position = pimd->position;
tpimd->random_position = pimd->random_position;
}