Post #4467: Hmmm maybe the problem is in your Active Snap macro, the second slot that change
š Metadata
- Author: Motiomancer
- Date: 2022-07-23 18:44:41
- Type:
answer - Quality Score: 7/10
- Reply to: post_04466
š·ļø Tags
macro hotkeys intermediate solved
āļø Related PME Features
- 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:
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
image928Ć422 40.9 KB