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>2018-10-31 17:08:55 +0300
committerMartin Felke <martin.felke@googlemail.com>2018-10-31 17:08:55 +0300
commit3fa179f341220c8f41b40cae7dce523e647f532b (patch)
treee10ada08bfee99bd3baddf7932c29f2d675ae7dc
parent982720cffef2dc79d713d7a282e345fc91b9b27e (diff)
disabled a verbose print when using many objects
-rw-r--r--source/blender/blenkernel/intern/rigidbody.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/rigidbody.c b/source/blender/blenkernel/intern/rigidbody.c
index 8d2291ef263..fdd3c5e2d0a 100644
--- a/source/blender/blenkernel/intern/rigidbody.c
+++ b/source/blender/blenkernel/intern/rigidbody.c
@@ -1702,7 +1702,7 @@ void BKE_rigidbody_update_ob_array(RigidBodyWorld *rbw, bool do_bake_correction)
//correct map if baked, it might be shifted
for (i = 0; i < l; i++) {
Object *ob = rbw->objects[i];
- printf("%s\n", ob->id.name + 2);
+ //printf("%s\n", ob->id.name + 2);
rmd = (FractureModifierData*)modifiers_findByType(ob, eModifierType_Fracture);
if (rmd) {