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
2 changed files with 1 additions and 0 deletions
Showing only changes of commit 2299b3716f - Show all commits

View File

@ -35,6 +35,7 @@ class BSBST_OT_new_brushstrokes(bpy.types.Operator):
brushstrokes_data = bpy.data.hair_curves.new(name) brushstrokes_data = bpy.data.hair_curves.new(name)
brushstrokes_object = bpy.data.objects.new(name, brushstrokes_data) brushstrokes_object = bpy.data.objects.new(name, brushstrokes_data)
context.collection.objects.link(brushstrokes_object) context.collection.objects.link(brushstrokes_object)
brushstrokes_object.visible_shadow = False
return brushstrokes_object return brushstrokes_object
def new_flow_object(self, context, name): def new_flow_object(self, context, name):