Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_relations_rig.cc
| Show First 20 Lines • Show All 445 Lines • ▼ Show 20 Lines | else { | ||||
| /* Bones must be traversed before cleanup. */ | /* Bones must be traversed before cleanup. */ | ||||
| add_relation(bone_done_key, pose_cleanup_key, "Done -> Cleanup"); | add_relation(bone_done_key, pose_cleanup_key, "Done -> Cleanup"); | ||||
| add_relation(bone_ready_key, pose_cleanup_key, "Ready -> Cleanup"); | add_relation(bone_ready_key, pose_cleanup_key, "Ready -> Cleanup"); | ||||
| } | } | ||||
| /* Custom shape. */ | /* Custom shape. */ | ||||
| if (pchan->custom != nullptr) { | if (pchan->custom != nullptr) { | ||||
| build_object(pchan->custom); | build_object(pchan->custom, false); | ||||
| add_visibility_relation(&pchan->custom->id, &armature->id); | add_visibility_relation(&pchan->custom->id, &armature->id); | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| } // namespace blender::deg | } // namespace blender::deg | ||||