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 d1fd067cbd - Show all commits

View File

@ -101,7 +101,7 @@ class BSBST_OT_new_brushstrokes(bpy.types.Operator):
self.report({"ERROR"}, "Surface Object needs an available UV Map") self.report({"ERROR"}, "Surface Object needs an available UV Map")
return {"CANCELLED"} return {"CANCELLED"}
name = 'Brushstrokes' name = f'{surface_object.name} - Brushstrokes'
brushstrokes_object = self.new_brushstrokes_object(context, name) brushstrokes_object = self.new_brushstrokes_object(context, name)
flow_is_required = settings.brushstroke_method == 'SURFACE_FILL' flow_is_required = settings.brushstroke_method == 'SURFACE_FILL'
if flow_is_required: if flow_is_required: