Pie Menu Editor 1.18.7

Looks like the latest version broke something, probably something to do with the Left Click support. The previous 2.8 version works fine.

Yep, that feature changes API. Try to install this fix.

3 Likes

Works perfectly, thank you!

It is possible to set the custom toolbart to be visible in “Toggle Maximize Area” ?

Where I can find this area?

When you press shift + space in the 3dviewport

ps.
is possible in 2.8 to create custom toolbars like in 2.79 (https://youtu.be/PB3wtlZ6AaM)

No, looks like maximized area doesn’t support area splitting.
But you can add custom widgets to the header.

Not yet, but I’m going to support them in Blender 2.8 Beta.

1 Like


Do you know if we will be able to add buttons to this bar at the top?

Yes, topbar uses python scripts. So we can customize it.
Will add some PME tool for this for 2.8 beta.

4 Likes

Your dedication to this addon is very inspiring. I would pay if you decided to charge for an upgrade to 2.8.

I feel sorry for those complaining about workflow and UI changes of Blender 2.8. Those issues are non-existant with PME.

1 Like

Those issues are non-existant with PME.

JUST THIS.

Is this Bug?


When in toggel the Funktion Multiselect, the stack keys will not toggle.

Hello,

thanks for really great addon! One question - how can I set up “Show whole scene transparent” toggle (X-Ray)?
I thought, something like this would work, but it’s not.

C.space_data.shading.show_xray

Thanks,
Marcin

Hope this helps.
You are using this command:

open_menu("Tab Bar Commands", props(menu))

props() function returns the value of Tab Bar custom property. Which is enum property.
When multiselect is disabled, enum property stores a string value. Eg: ‘Assets’
When multiselect is enabled, it stores a set of string values. Eg: {‘Assets’, ‘Add’}

Try this instead:

[open_menu("Tab Bar Commands", value) for value in props(menu)]

Hi,
Make sure that you use this code in Property tab and in 3DView area.

If you want to use this button in any area, you need to find 3DView area in your code (Blender 2.8+):

find_by(C.screen.areas, "ui_type", 'VIEW_3D').spaces.active.shading.show_xray

Is the same. Is not toggle on or off. so far I have used this command:

toggle_menu("Tab Bar Commands")

Please export and pm me your menus.

Thank you very much! :slight_smile:

The script does not work with the latest version of Blender 2.80. Any chance for a fix?

Thanks, will try to fix asap.