📋 Metadata
- Author: roaoao
- Date: 2019-03-08 14:43:50
- Type:
answer - Reply to: post_02003
- Replies (1): post_02009
💬 Content
Pinhead:
I would like to put the vertex, edge and face selections in pie menu.
What commands do I have to make so the components selections is work from the level of object and edit mode?
Here is an example for the vertex mode:
C.tool_settings.mesh_select_mode = (True, False, False)
Pinhead:
What python command is for toggle wireframe on shaded (in pie menu)?
Try something like this in Command tab:
s = C.space_data.shading; s.type = 'WIREFRAME' if s.type != 'WIREFRAME' else 'SOLID'
Pinhead:
Is possible to recreate this function from ReLast addon (https://youtu.be/JfvLlfOgaSw) in PME?
Yes, import this Grid Fill Modal and use it in your pie (Menu tab).
❤️ 1 likes