Post #1857: PME is extremely versatile and the author has gone far with it. Blender is prett

📋 Metadata

🏷️ Tags

pie-menu configuration intermediate

  • Pie Menu Editor
  • Custom tab with Python scripting
  • Icon customization
  • Property binding

💬 Content

PME is extremely versatile and the author has gone far with it. Blender is pretty much unusable without it for me.

Click your automerge button in PME and choose “Hide Text”. Then add the icon to it manually. It should functionally behave the same as in UI now.

The other way is to use the Custom tab which lets you define all these parameters by (single-line) python code or from an external py-file. Something like:

ts = C.tool_settings; icon = "AUTOMERGE_ON" if ts.use_mesh_automerge else "AUTOMERGE_OFF"; L.prop(ts, "use_mesh_automerge", text="", icon=icon)

I have no idea why the menu only would work on the left side of the screen. It’s the first time I’m seeing it :stuck_out_tongue:


🔗 View on Blender Artists