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:
authorMartin Felke <martin.felke@googlemail.com>2019-06-17 15:35:25 +0300
committerMartin Felke <martin.felke@googlemail.com>2019-06-17 15:35:25 +0300
commit969fca718a4c477c65b5fe334a65e48b273b6bc2 (patch)
treed07409314d53f582c92f95400384c93db479d812
parentaf7032e9f056c0ee5968015c64d63bf2d3c18031 (diff)
disabled offset based fallback in rotation calculation
it caused unwanted sudden rotation changes
-rw-r--r--source/blender/blenkernel/intern/fracture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/fracture.c b/source/blender/blenkernel/intern/fracture.c
index 4c593f25ac3..589497ae5bf 100644
--- a/source/blender/blenkernel/intern/fracture.c
+++ b/source/blender/blenkernel/intern/fracture.c
@@ -4267,7 +4267,7 @@ void BKE_read_animated_loc_rot(FractureModifierData *fmd, Object *ob, bool do_bi
float rot[4], iquat[4];
verts_to_quat(rot, mvert[fmd->anim_bind[i].v].co,
mvert[fmd->anim_bind[i].v1].co,
- mvert[fmd->anim_bind[i].v2].co, true);
+ mvert[fmd->anim_bind[i].v2].co, false);
invert_qt_qt(iquat, fmd->anim_bind[i].quat);
mul_qt_qtqt(quat, rot, iquat);