📋 Metadata

💬 Content

Zunio:

Want to sneak some functionality from Mudbox like:

  • LMB is for simple painting with default brush
  • Shift + LMB is for blur - but when its released it goes back to simple draw

Try to use a Macro Operator with these 3 slots:

bpy.context.scene.b_painter_brush = 'Brush Blur'
bpy.ops.paint.image_paint(mode='NORMAL')
bpy.ops.pme.timeout(cmd="bpy.context.scene.b_painter_brush = 'Brush Default'")

❤️ 3 likes


🔗 View on Blender Artists