Post #1857: PME is extremely versatile and the author has gone far with it. Blender is prett
📋 Metadata
- Author: iceythe
- Date: 2019-01-18 06:22:27
- Type:
answer - Quality Score: 8/10
- Reply to: post_01856
- Replies (1): post_01863
🏷️ Tags
pie-menu configuration intermediate
⚙️ Related PME Features
- 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 