Post #1496: R_

📋 Metadata

🏷️ Tags

macro hotkeys intermediate

  • Macro Editor
  • Hotkey Configuration
  • Python Scripting

💬 Content

R_dva:

it possible to combine two operations in one hotkey, rip fill and edge slide?

Good tool.
In this case you can create a macro with 2 slots:

bpy.ops.mesh.rip(use_fill=True)
bpy.ops.transform.vert_slide()

Or just use this code in Command tab:

bpy.ops.mesh.rip('INVOKE_DEFAULT', use_fill=True); bpy.ops.transform.vert_slide('INVOKE_DEFAULT')

❤️ 1 likes


🔗 View on Blender Artists