Post #1235: ![](https://blenderartists.org/user_avatar/blenderartists.org/mickhanks/48/77779

📋 Metadata

🏷️ Tags

pie-menu hotkeys intermediate solved

  • Pie Menu Editor
  • Python Scripting
  • Hotkey Configuration

💬 Content

MickHanks:

I’m sure there’s a smarter way in doing this but this works for me.

Just built a menu to jump directly into edit mode for VERT, EDGE or FACE. Thanks PIE Edit Menu

I don’t understand why you are using a script, just use:

bpy.ops.object.mode_set(mode=‘EDIT’, toggle=False); bpy.ops.mesh.select_mode(type=‘VERT’)

in pie menu editor, also for a faster workflow consider using a pie menu just using gestures for something you will be using so ofter, i.e
flick left for verts, flick up for edges and flick right for polys. that way it is one click and muscle memory will take care of the rest.


🔗 View on Blender Artists