UI: Add curve geometry start and end panel

The placement of the start and end factor and mapping settings for
curves has been quite misleading for a long time. They were in the
"Bevel" subpanel, but they aren't related to bevel because they affect
curves with only extrusion and no bevel.

This commit moves these properties to their own subpanel, labeled
"Start & End Mapping".

Differential Revision: https://developer.blender.org/D8910
This commit is contained in:
Hans Goudey 2020-09-21 19:19:21 -05:00
parent 8eda3ddc4f
commit 4e667ecef9
Notes: blender-bot 2023-02-13 11:55:07 +01:00
Referenced by commit bf0cefe738, UI: Clarify curve geometry factor and mapping tooltips
1 changed files with 32 additions and 17 deletions

View File

@ -207,27 +207,41 @@ class DATA_PT_geometry_curve_bevel(CurveButtonsPanelCurve, Panel):
col.prop(curve, "bevel_resolution", text="Resolution")
col.prop(curve, "use_fill_caps")
if type(curve) is not TextCurve:
col = layout.column()
col.active = (
(curve.bevel_depth > 0.0) or
(curve.extrude > 0.0) or
(curve.bevel_object is not None)
)
sub = col.column(align=True)
sub.prop(curve, "bevel_factor_start", text="Start")
sub.prop(curve, "bevel_factor_end", text="End")
sub = col.column(align=True)
sub.prop(curve, "bevel_factor_mapping_start", text="Mapping Start")
sub.prop(curve, "bevel_factor_mapping_end", text="End")
# Put the large template at the end so it doesn't displace the other properties
if curve.bevel_mode == 'PROFILE':
col.template_curveprofile(curve, "bevel_profile")
class DATA_PT_geometry_curve_start_end(CurveButtonsPanelCurve, Panel):
bl_label = "Start & End Mapping"
bl_parent_id = "DATA_PT_geometry_curve"
bl_options = {'DEFAULT_CLOSED'}
@classmethod
def poll(cls, context):
# Text objects don't support these properties
return (type(context.curve) in {Curve})
def draw(self, context):
layout = self.layout
layout.use_property_split = True
curve = context.curve
col = layout.column()
col.active = (
((curve.bevel_depth > 0.0) or (curve.extrude > 0.0)) and
(curve.bevel_mode != 'OBJECT')
)
sub = col.column(align=True)
sub.prop(curve, "bevel_factor_start", text="Factor Start")
sub.prop(curve, "bevel_factor_end", text="End")
sub = col.column(align=True)
sub.prop(curve, "bevel_factor_mapping_start", text="Mapping Start")
sub.prop(curve, "bevel_factor_mapping_end", text="End")
class DATA_PT_pathanim(CurveButtonsPanelCurve, Panel):
bl_label = "Path Animation"
bl_options = {'DEFAULT_CLOSED'}
@ -480,6 +494,7 @@ classes = (
DATA_PT_curve_texture_space,
DATA_PT_geometry_curve,
DATA_PT_geometry_curve_bevel,
DATA_PT_geometry_curve_start_end,
DATA_PT_pathanim,
DATA_PT_active_spline,
DATA_PT_font,