Brushstroke Tools: Initial Version #328
@ -30,7 +30,7 @@ class BSBST_tool_settings(bpy.types.PropertyGroup):
|
|||||||
brush_color: bpy.props.FloatVectorProperty(name='Brush Color',
|
brush_color: bpy.props.FloatVectorProperty(name='Brush Color',
|
||||||
size=3,
|
size=3,
|
||||||
subtype='COLOR',
|
subtype='COLOR',
|
||||||
default=(.0,.0,.0),
|
default=(0.,.5,1.),
|
||||||
soft_min=0,
|
soft_min=0,
|
||||||
soft_max=1,
|
soft_max=1,
|
||||||
update=None,
|
update=None,
|
||||||
@ -164,6 +164,10 @@ class BrushstrokesCurves(WorkSpaceTool):
|
|||||||
layout.use_property_split = True
|
layout.use_property_split = True
|
||||||
layout.use_property_decorate = False
|
layout.use_property_decorate = False
|
||||||
|
|
||||||
|
col = layout.column(align=False)
|
||||||
|
col.template_color_picker(tool_settings, 'brush_color', value_slider=True)
|
||||||
|
col.prop(tool_settings, 'brush_color', text='')
|
||||||
|
|
||||||
col = layout.column(align=True)
|
col = layout.column(align=True)
|
||||||
col.prop(tool_settings, "radius_taper_start", text="Taper Start", slider=True)
|
col.prop(tool_settings, "radius_taper_start", text="Taper Start", slider=True)
|
||||||
col.prop(tool_settings, "radius_taper_end", text="End", slider=True)
|
col.prop(tool_settings, "radius_taper_end", text="End", slider=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user