Brushstroke Tools: Initial Version #328
@ -237,6 +237,12 @@ class BSBST_Settings(bpy.types.PropertyGroup):
|
|||||||
('BRUSHSTROKES', 'Brushstrokes', 'Specify the style of the currently active brushstrokes', 'BRUSH_DATA', 1),
|
('BRUSHSTROKES', 'Brushstrokes', 'Specify the style of the currently active brushstrokes', 'BRUSH_DATA', 1),
|
||||||
('AUTO', 'Auto', 'Specify the style of either the active brushstrokes or the preset depending on the context', 'AUTO', 2),
|
('AUTO', 'Auto', 'Specify the style of either the active brushstrokes or the preset depending on the context', 'AUTO', 2),
|
||||||
])
|
])
|
||||||
|
view_tab: bpy.props.EnumProperty(default='MODIFIERS',
|
||||||
|
name='Context',
|
||||||
|
items= [
|
||||||
|
('MODIFIERS', 'Modifiers', 'View Modifiers Settings', 'MODIFIER', 0),
|
||||||
|
('MATERIAL', 'Material', 'View Material Settings', 'MATERIAL', 1),
|
||||||
|
])
|
||||||
|
|
||||||
try:
|
try:
|
||||||
gpv3 = bpy.context.preferences.experimental.use_grease_pencil_version3
|
gpv3 = bpy.context.preferences.experimental.use_grease_pencil_version3
|
||||||
|
@ -306,64 +306,68 @@ class BSBST_PT_brushstroke_tools_panel(bpy.types.Panel):
|
|||||||
row_edit.operator('brushstroke_tools.edit_brushstrokes', icon='GREASEPENCIL', text = text)
|
row_edit.operator('brushstroke_tools.edit_brushstrokes', icon='GREASEPENCIL', text = text)
|
||||||
row_edit.prop(settings, 'edit_toggle', icon='RESTRICT_SELECT_OFF' if settings.edit_toggle else 'RESTRICT_SELECT_ON', icon_only=True)
|
row_edit.prop(settings, 'edit_toggle', icon='RESTRICT_SELECT_OFF' if settings.edit_toggle else 'RESTRICT_SELECT_ON', icon_only=True)
|
||||||
|
|
||||||
if not settings.preset_object and is_preset:
|
row = style_panel.row(align=True)
|
||||||
style_panel.operator("brushstroke_tools.init_preset", icon='MODIFIER')
|
row.prop(settings, 'view_tab', expand=True)
|
||||||
else:
|
|
||||||
material_header, material_panel = style_panel.panel("brushstrokes_material", default_closed=False)
|
|
||||||
material_header.label(text='Material', icon='MATERIAL')
|
|
||||||
if material_panel:
|
|
||||||
material_row = material_panel.row(align=True)
|
|
||||||
material_row.template_ID(settings, 'context_material')
|
|
||||||
|
|
||||||
if settings.context_material:
|
if settings.view_tab == 'MATERIAL':
|
||||||
if getattr(settings.context_material, '["BSBST"]', False):
|
if not settings.preset_object and is_preset:
|
||||||
draw_material_settings(material_panel, settings.context_material)
|
style_panel.operator("brushstroke_tools.init_preset", icon='MODIFIER')
|
||||||
|
else:
|
||||||
|
material_header, material_panel = style_panel.panel("brushstrokes_material", default_closed=False)
|
||||||
|
material_header.label(text='Material', icon='MATERIAL')
|
||||||
|
if material_panel:
|
||||||
|
material_row = material_panel.row(align=True)
|
||||||
|
material_row.template_ID(settings, 'context_material')
|
||||||
|
|
||||||
if style_object:
|
if settings.context_material:
|
||||||
for mod in style_object.modifiers:
|
if getattr(settings.context_material, '["BSBST"]', False):
|
||||||
mod_info = mod.id_data.modifier_info.get(mod.name)
|
draw_material_settings(material_panel, settings.context_material)
|
||||||
if not mod_info:
|
elif settings.view_tab == 'MODIFIERS':
|
||||||
continue
|
if style_object:
|
||||||
if display_mode == 0:
|
for mod in style_object.modifiers:
|
||||||
if mod_info.hide_ui:
|
mod_info = mod.id_data.modifier_info.get(mod.name)
|
||||||
|
if not mod_info:
|
||||||
|
continue
|
||||||
|
if display_mode == 0:
|
||||||
|
if mod_info.hide_ui:
|
||||||
|
continue
|
||||||
|
|
||||||
|
mod_header, mod_panel = style_panel.panel(mod.name, default_closed = False)
|
||||||
|
row = mod_header.row(align=True)
|
||||||
|
row.label(text='', icon='GEOMETRY_NODES')
|
||||||
|
row.prop(mod_info, 'name', text='', emboss=False)
|
||||||
|
|
||||||
|
if display_mode != 0:
|
||||||
|
mod_header.prop(mod_info, 'hide_ui', icon_only=True, icon='UNPINNED' if mod_info.hide_ui else 'PINNED', emboss=False)
|
||||||
|
if is_preset:
|
||||||
|
op = row.operator('brushstroke_tools.preset_remove_mod', text='', icon='X')
|
||||||
|
else:
|
||||||
|
op = row.operator('object.modifier_remove', text='', icon='X')
|
||||||
|
# TODO Implement operator to remove modifier on brushstroke object, even when not active
|
||||||
|
op.modifier = mod.name
|
||||||
|
|
||||||
|
if not mod_panel:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
mod_header, mod_panel = style_panel.panel(mod.name, default_closed = False)
|
if not mod.type == 'NODES':
|
||||||
row = mod_header.row(align=True)
|
mod_panel.label(text="Only 'Nodes' modifiers supported for preset interface")
|
||||||
row.label(text='', icon='GEOMETRY_NODES')
|
continue
|
||||||
row.prop(mod_info, 'name', text='', emboss=False)
|
|
||||||
|
|
||||||
if display_mode != 0:
|
# show settings for nodes modifiers
|
||||||
mod_header.prop(mod_info, 'hide_ui', icon_only=True, icon='UNPINNED' if mod_info.hide_ui else 'PINNED', emboss=False)
|
if mod.show_group_selector:
|
||||||
if is_preset:
|
mod_panel.prop(mod, 'node_group')
|
||||||
op = row.operator('brushstroke_tools.preset_remove_mod', text='', icon='X')
|
if not mod.node_group:
|
||||||
else:
|
continue
|
||||||
op = row.operator('object.modifier_remove', text='', icon='X')
|
|
||||||
# TODO Implement operator to remove modifier on brushstroke object, even when not active
|
|
||||||
op.modifier = mod.name
|
|
||||||
|
|
||||||
if not mod_panel:
|
draw_panel_ui_recursive(mod_panel,
|
||||||
continue
|
'',
|
||||||
|
mod,
|
||||||
|
mod.node_group.interface.items_tree.items(),
|
||||||
|
display_mode)
|
||||||
|
|
||||||
if not mod.type == 'NODES':
|
# expose add modifier operator for preset context
|
||||||
mod_panel.label(text="Only 'Nodes' modifiers supported for preset interface")
|
if is_preset:
|
||||||
continue
|
style_panel.operator('brushstroke_tools.preset_add_mod', icon='ADD')
|
||||||
|
|
||||||
# show settings for nodes modifiers
|
|
||||||
if mod.show_group_selector:
|
|
||||||
mod_panel.prop(mod, 'node_group')
|
|
||||||
if not mod.node_group:
|
|
||||||
continue
|
|
||||||
|
|
||||||
draw_panel_ui_recursive(mod_panel,
|
|
||||||
'',
|
|
||||||
mod,
|
|
||||||
mod.node_group.interface.items_tree.items(),
|
|
||||||
display_mode)
|
|
||||||
|
|
||||||
# expose add modifier operator for preset context
|
|
||||||
if is_preset:
|
|
||||||
style_panel.operator('brushstroke_tools.preset_add_mod', icon='ADD')
|
|
||||||
|
|
||||||
class BSBST_MT_PIE_brushstroke_data_marking(bpy.types.Menu):
|
class BSBST_MT_PIE_brushstroke_data_marking(bpy.types.Menu):
|
||||||
bl_idname= "BSBST_MT_PIE_brushstroke_data_marking"
|
bl_idname= "BSBST_MT_PIE_brushstroke_data_marking"
|
||||||
|
Loading…
Reference in New Issue
Block a user