Post #4467: Hmmm maybe the problem is in your Active Snap macro, the second slot that change

šŸ“‹ Metadata

šŸ·ļø Tags

macro hotkeys intermediate solved

  • Macro Editor
  • Stack Key Editor
  • Pie Menu Editor

šŸ’¬ Content

Hmmm maybe the problem is in your Active Snap macro, the second slot that changes the mode to Vertex

bpy.ops.mesh.select_mode(use_extend=False, use_expand=False, type='VERT', action='TOGGLE')  

try change it to

bpy.ops.mesh.select_mode('EXEC_DEFAULT', True, use_extend=False, use_expand=False, type='VERT', action='TOGGLE')

Sometimes stacking operators with the default option ends up not working, just so you know to change it to exec_default you do it in the command tab like this and press apply:

imageimage928Ɨ422 40.9 KB

If thats not it, I’m out of ideas.

At the selection sets yes, but at the second one with the extrude and inset modes no.
Now if i press extrude mode and cancel it, the Stack key jumps automatically to the next state if i press the Stack key again. So it remembers state, but jumps to next

If you need to choose between extrude/inset/etc I would suggest to use a pie menu with the different tools needed becase the current stack key is not going to do what you want


šŸ”— View on Blender Artists