📋 Metadata

💬 Content

rhyging5:

I have not success to implement the following buttons:

[ATTACH=CONFIG]446515[/ATTACH]

the mesh selection type
not sure what I missing. Can someone tell how to do?

Afaik, those buttons are hardcoded in Blender and you cannot add them to your pie.
But you can add 3 separate buttons to select Vertex/Edge/Face mode (Command tab):

Vertex mode:

C.tool_settings.mesh_select_mode = [True, False, False]

Edge mode:

C.tool_settings.mesh_select_mode = [False, True, False]

Face mode:

C.tool_settings.mesh_select_mode = [False, False, True]

🔗 View on Blender Artists