Brushstroke Tools: Initial Version #328

Merged
Simon Thommes merged 229 commits from SimonThommes/blender-studio-tools:brushstroke_tools-initial-version into main 2024-11-06 15:03:47 +01:00
Showing only changes of commit a1c76bbc22 - Show all commits

View File

@ -14,8 +14,8 @@ class BSBST_Settings(bpy.types.PropertyGroup):
preset_material: bpy.props.PointerProperty(type=bpy.types.Material, name="Preset Material")
assign_materials: bpy.props.BoolProperty(name='Assign Modifier Materials', default=True)
style_context: bpy.props.EnumProperty(default='AUTO',
items= [('PRESET', 'Preset', 'Specify the style of the current preset used for new brushstrokess', '', 0),\
('BRUSHSTROKES', 'Scribble', 'Specify the style of the currently active brushstrokes', '', 1),
items= [('PRESET', 'Preset', 'Specify the style of the current preset used for new brushstrokes', '', 0),\
('BRUSHSTROKES', 'Brushstrokes', 'Specify the style of the currently active brushstrokes', '', 1),
('AUTO', 'Auto', 'Specify the style of either the active brushstrokes or the preset depending on the context', '', 2),
])