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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-18 00:19:17 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-18 00:19:17 +0300
commitf4e1c89b2020a73c330aebbdcfe619956608d3b1 (patch)
tree8f5db006071b3154f383a8231b31efbf1205562f
parent25a434fd250a740ef23263af11d0a53a2539007b (diff)
Bugfix: the transform of a particle system in a dupli-group was wrong.
-rw-r--r--source/blender/blenkernel/intern/particle_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c
index 49ce809ad6a..b7fa7591692 100644
--- a/source/blender/blenkernel/intern/particle_system.c
+++ b/source/blender/blenkernel/intern/particle_system.c
@@ -4581,6 +4581,6 @@ void particle_system_update(Object *ob, ParticleSystem *psys){
system_step(ob,psys,psmd,cfra);
- Mat4CpyMat4(psys->imat, ob->imat); /* used for duplicators */
+ Mat4Invert(psys->imat, ob->obmat); /* used for duplicators */
}