summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
4d395a3)
This fixes part of T58991.
Still need to add proper relations so that point cache is marked as outdated
when effectors are modified.
/* set up dependencies between these operations and other builtin nodes --------------- */
/* set up dependencies between these operations and other builtin nodes --------------- */
+ /* effectors */
+ ListBase *relations = deg_build_effector_relations(graph_, rbw->effector_weights->group);
+ LISTBASE_FOREACH (EffectorRelation *, relation, relations) {
+ ComponentKey eff_key(&relation->ob->id, DEG_NODE_TYPE_TRANSFORM);
+ add_relation(eff_key, init_key, "RigidBody Field");
+ // FIXME add relations so pointache is marked as outdated when effectors are modified
+ }
+
/* time dependency */
TimeSourceKey time_src_key;
add_relation(time_src_key, init_key, "TimeSrc -> Rigidbody Reset/Rebuild (Optional)");
/* time dependency */
TimeSourceKey time_src_key;
add_relation(time_src_key, init_key, "TimeSrc -> Rigidbody Reset/Rebuild (Optional)");