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-15 21:05:27 +0300
committerMartin Felke <martin.felke@googlemail.com>2019-06-15 21:05:27 +0300
commit7a37dbbaeb66ed13f9f766a6e440cf8443f0cda9 (patch)
tree4c627d4a08bb88db0f16eb9c4b362940faa9cd9c /source/blender/blenkernel/intern/rigidbody.c
parenta2fb21104a9c4fc890fb2cc002a7a4d5bb811017 (diff)
fix attempt for binding to particles
Diffstat (limited to 'source/blender/blenkernel/intern/rigidbody.c')
-rw-r--r--source/blender/blenkernel/intern/rigidbody.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/rigidbody.c b/source/blender/blenkernel/intern/rigidbody.c
index c50d1a93e93..2f4e756db73 100644
--- a/source/blender/blenkernel/intern/rigidbody.c
+++ b/source/blender/blenkernel/intern/rigidbody.c
@@ -2181,13 +2181,13 @@ void BKE_rigidbody_sync_transforms(RigidBodyWorld *rbw, Object *ob, float ctime)
if (rbw == NULL)
return;
- BLI_mutex_lock(&modifier_lock);
+ //BLI_mutex_lock(&modifier_lock);
for (md = ob->modifiers.first; md; md = md->next) {
modFound = do_sync_modifier(md, ob, rbw, ctime);
if (modFound)
break;
}
- BLI_mutex_unlock(&modifier_lock);
+ //BLI_mutex_unlock(&modifier_lock);
if (!modFound)
{