From f4a2024c448568badb44709b342d4f47002c456b Mon Sep 17 00:00:00 2001 From: Nathan Craddock Date: Tue, 15 Sep 2020 15:09:41 -0600 Subject: Constraints: Add link and copy functions Add functions to copy a single constraint between objects or between bones, and another function to link constraints. This is in preparation for constraint drag and drop in the outliner. Differential Revision: https://developer.blender.org/D8642 --- source/blender/editors/include/ED_object.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source/blender/editors/include/ED_object.h') diff --git a/source/blender/editors/include/ED_object.h b/source/blender/editors/include/ED_object.h index 282df25172f..fcf18f306e1 100644 --- a/source/blender/editors/include/ED_object.h +++ b/source/blender/editors/include/ED_object.h @@ -346,6 +346,18 @@ void ED_object_constraint_dependency_tag_update(struct Main *bmain, bool ED_object_constraint_move_to_index(struct Object *ob, struct bConstraint *con, const int index); +void ED_object_constraint_link(struct Main *bmain, + struct Object *ob_dst, + struct ListBase *dst, + struct ListBase *src); +void ED_object_constraint_copy_for_object(struct Main *bmain, + struct Object *ob_dst, + struct bConstraint *con); +void ED_object_constraint_copy_for_pose(struct Main *bmain, + struct Object *ob_dst, + struct bPoseChannel *pchan, + struct bConstraint *con); + /* object_modes.c */ bool ED_object_mode_compat_test(const struct Object *ob, eObjectMode mode); bool ED_object_mode_compat_set(struct bContext *C, -- cgit v1.2.3