Post #2340: Ma

πŸ“‹ Metadata

🏷️ Tags

macro hotkeys intermediate solved

  • Macro Editor
  • Stack Key Editor
  • Python Scripting

πŸ’¬ Content

MatsuikoHiroka:

i wanna create a rotate macro with specific angle like 0 degree ( no modals ) and able to combine it with relast

No unfortunately, afaik, macros always execute tools in interactive mode.
But if you want to use rotate tool only you don’t need a macro. Just use this code in Command tab (for example in a Stack Key):

bpy.ops.transform.rotate('EXEC_DEFAULT', True, value=0)

πŸ”— View on Blender Artists