Commit: 195986a71969f2fa20c4d6de89cdbcb8f62f3ba1 Author: Jun Mizutani Date: Wed May 11 08:56:26 2022 +0200 Branches: master https://developer.blender.org/rB195986a71969f2fa20c4d6de89cdbcb8f62f3ba1
Fix: Curves interpolate point count option missing from panels Added in 8852191b779e880fe4d5116f2bee3fcddb8aced4 Differential Revision: https://developer.blender.org/D14919 =================================================================== M release/scripts/startup/bl_ui/properties_paint_common.py =================================================================== diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py index 782fec91f91..649e09fdfaa 100644 --- a/release/scripts/startup/bl_ui/properties_paint_common.py +++ b/release/scripts/startup/bl_ui/properties_paint_common.py @@ -776,6 +776,7 @@ def brush_settings(layout, context, brush, popover=False): layout.prop(brush.curves_sculpt_settings, "curve_length") layout.prop(brush.curves_sculpt_settings, "interpolate_length") layout.prop(brush.curves_sculpt_settings, "interpolate_shape") + layout.prop(brush.curves_sculpt_settings, "interpolate_point_count") use_frontface = True elif brush.curves_sculpt_tool == 'GROW_SHRINK': layout.prop(brush.curves_sculpt_settings, "scale_uniform") _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
