Post #1496:
R_
📋 Metadata
- Author: roaoao
- Date: 2018-07-26 18:06:58
- Type:
answer - Quality Score: 8/10
- Reply to: post_01495
- Replies (1): post_01497
🏷️ Tags
⚙️ Related PME Features
- 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