Post #4256: You can but you need to understand some python.

📋 Metadata

🏷️ Tags

macro pie-menu hotkeys advanced solved

  • Pie Menu Editor
  • Macro Editor
  • Python Scripting
  • Hotkey Configuration

💬 Content

You can but you need to understand some python.

PME has a U. function to save things, if you put for example U.anything = bpy.code , U.anything is created and its given the “value” bpy.code

Knowing that, we can use it to save the command on the menus and call it with a macro.

Example (Select an object to use it) :
memCommand.json (1.2 KB)

image

I created a pie menu that is called while holding “5” where the command for resize and move also writes the value of “U.mem”

Then created a macro that is called with pressing “5” and executes U.mem with exec(U.mem)


❤️ 2 likes


🔗 View on Blender Artists