From ec97450ac6160a8892a339a746a507e40b7d2fce Mon Sep 17 00:00:00 2001 From: Omar Emara Date: Tue, 23 Mar 2021 18:26:13 +1100 Subject: Curves: add taper mode option Currently, when a taper object is specified, the radius of the spline is ignored. This patch adds a new option to control how the taper object affect the effective radius of the spline. The option allow three modes of operation: - Override: The old method. The radius of the spline is ignored and overridden. - Multiply: The radius of the spline is multiplied by the taper radius. - Add: The radius of the spline is added to the taper radius. Ref D10779 --- release/scripts/startup/bl_ui/properties_data_curve.py | 1 + 1 file changed, 1 insertion(+) (limited to 'release/scripts') diff --git a/release/scripts/startup/bl_ui/properties_data_curve.py b/release/scripts/startup/bl_ui/properties_data_curve.py index 394e2270227..4bd2d66e257 100644 --- a/release/scripts/startup/bl_ui/properties_data_curve.py +++ b/release/scripts/startup/bl_ui/properties_data_curve.py @@ -175,6 +175,7 @@ class DATA_PT_geometry_curve(CurveButtonsPanelCurve, Panel): sub.prop(curve, "extrude") col.prop(curve, "taper_object") + col.prop(curve, "taper_radius_mode") if type(curve) is not TextCurve: # This setting makes no sense for texts, since we have no control over start/end of the bevel object curve. -- cgit v1.2.3