From 0ab7e321585f909a4fd3cc55221bf3d3827989e9 Mon Sep 17 00:00:00 2001 From: Pablo Dobarro Date: Tue, 11 Feb 2020 19:43:36 +0100 Subject: Pose Brush: Option to disable the IK anchor point The IK chain was using an anchor point by default as it makes sense for posing, but for creating curved shapes it is useful to be able to disable it. Reviewed By: jbakker Differential Revision: https://developer.blender.org/D6584 --- release/scripts/startup/bl_ui/properties_paint_common.py | 1 + 1 file changed, 1 insertion(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py index ec3dec6c54d..7d2846acb72 100644 --- a/release/scripts/startup/bl_ui/properties_paint_common.py +++ b/release/scripts/startup/bl_ui/properties_paint_common.py @@ -620,6 +620,7 @@ def brush_settings(layout, context, brush, popover=False): layout.prop(brush, "pose_offset") layout.prop(brush, "pose_smooth_iterations") layout.prop(brush, "pose_ik_segments") + layout.prop(brush, "use_pose_ik_anchored") layout.separator() if brush.sculpt_tool == 'SCRAPE': -- cgit v1.2.3