Pie Menu Editor 1.18.7

Roaoao, yes the “[OBJECT] Transform” panel works nice, no problems, no crashes.

And I want to add the option “Ambient oclussion” but I can´t! Help please!

In that case you should use folder’s name. For example, mesh_inset.

Where I can find that option?
These panels work for me: [WORLD] Ambient Occlusion, [CyclesWorld] Ambient Occlusion

Thanks a lot roaoao it works , now what if i want to enable bunch of addons together and toggle them off together
do i simply put “,” between two lines ? i tried it didnt work

Save this script as scripts/custom_addons.py and use it as external script in Custom tab.


addons = ['mesh_looptools', 'mesh_inset']
enabled = addons[0] in C.user_preferences.addons
icon = 'CHECKBOX_HLT' if enabled else 'CHECKBOX_DEHLT'
op_idname = 'wm.addon_disable' if enabled else 'wm.addon_enable'
cmds = []
for addon in addons:
    cmds.append('bpy.ops.%s(module="%s")' % (op_idname, addon))
cmd = "; ".join(cmds)
L.operator('wm.pme_user_command_exec', 'Addons', icon=icon).cmd = cmd

1 Like

i dont understand a word in that , but that worked like a charm :slight_smile:

Another question , is it possible to have different menus on selecting objects , like if i have selected lamp . it shows lamp’s pie menu , if camera is selected then it shows camera’s pie menu ,

No, its not possible right now. But you will be able to do that in pme 1.9.0.

haha then i ll wait for it :slight_smile: thanks for the quick reply

Sounds like an interesting update.

Sounds super handy!

Working with many menus becomes hard to manage (no tree structure - child parent- for sub menus - everything is displayed in flat list structure). I wish, that maybe user could isolate child menus (view only sub menus of current parent menu). With this feature, in example below, I could view only menus related to ‘QuickObject’ parent menu. Or some other way of grouping menus in viewport would be cool.

http://i.imgur.com/DELbMBY.jpg

New features:

  • Threshold and Confirm Threshold for Pie Menus
  • Sticky Keys
Update Instructions:
  • Backup your pie menus (using Export button)
  • Install the add-on from file
  • Restart blender
1 Like

I’ll try to implement something like that in the next version.

Still 1.8 in Blender Market, isn´t it??

Everything ok now!! I will enjoy sticky keys a lot!!! Thank you!!!

Thanks, fixed.

Completely agree with this, it would the addon much easier to work with. btw Is sticky key already working? can’t wait to try that out!

Yes, it’s working. For keys and mouse.
Unfortunately you cannot use 2 pie menus with the same hotkey.
But you can combine pie menu (in hold mode) with regular menu or popup dialog (in press mode)

Thanks a lot for the whole explanation!! :yes:

Found something, maybe a bug. I have a pie inside another pie, both of them have “Confirm Threshold” enabled, in the first pie the “Confirm Threshold” option works nice but in the second pie it doesn´t. Why?

And I have something failing here but I don´t know what it is…


Thanks. Will fix in the next version.

<b>New features:</b>
  • Tree view
  • Customizable width of the list/tree

Attachments