[Bf-blender-cvs] [74408ac] depsgraph_refactor: Stop handling pose eval in obdata ubereval

Joshua Leung noreply at git.blender.org
Fri Dec 19 13:56:11 CET 2014


Commit: 74408ac2bb167759177f91a9e92ae2d56941cb6b
Author: Joshua Leung
Date:   Fri Dec 19 23:40:17 2014 +1300
Branches: depsgraph_refactor
https://developer.blender.org/rB74408ac2bb167759177f91a9e92ae2d56941cb6b

Stop handling pose eval in obdata ubereval

===================================================================

M	source/blender/blenkernel/intern/object_update.c

===================================================================

diff --git a/source/blender/blenkernel/intern/object_update.c b/source/blender/blenkernel/intern/object_update.c
index d2c1f49..b0bcdc0 100644
--- a/source/blender/blenkernel/intern/object_update.c
+++ b/source/blender/blenkernel/intern/object_update.c
@@ -195,7 +195,8 @@ void BKE_object_handle_data_update(EvaluationContext *eval_ctx,
 			}
 		}
 		else {
-			BKE_pose_where_is(scene, ob);
+			// XXX: standard evaluation is now handled by our new nodes, so this case is not needed anymore
+			//BKE_pose_where_is(scene, ob);
 		}
 		break;




More information about the Bf-blender-cvs mailing list