> this is a collection of uncommercial Addons from all over
> this list does not claim completeness
…
> you can find the original addons over the included list
> all scripts have info from the authors on the top: bl_Info{…}
> if you find a bug or you need help: let me know…
TAB = Tool Shelf [T] / left side
UI = Property Shelf [N] / right side
> UI-TAB -> Main Panel right / Extension in Tool Shelf
> TAB-TAB -> Main TAB Panel left / Extension in Tool Shelf
> TAB-UI -> Main TAB Panel levt / Extension in Property Shelf
> for a quick update from version to a other version
> you can replace the scripts in the view3d_meta_toolkit_panel folder
> got to the appdata direction or uninstall, replace and install metatool new:
> to remove a addons in the folder completly
> you have to delete the specific PhytonScript > “changed_XXXX.py”
>…and…
> delete in the “init” script everything with the same name (import, register, etc…)
> if you do that correctly, the buttons of that addon will not pop up anymore…
mkbreuer, do you have a list of addons that need to be uninstalled before this addon will install? Any other meta addons? etc. Do they need to be uninstalled under app data/ roaming as well.Thanks
mkbreuer, no luck installing from addons_external in 2.72b. The addon will not activate. No other addons activated. I tried to activate it in 2.72 but it would not activate perhaps because I had other meta addons activated. I will now try it with a freshh install of 2.72.
I know the pie menues are there. Which do I activate in your pie menus file to get wazou’s? Your attachment above does not show up. Or which do you recommend if you can.Thanks
On the bottom of each script you find wich shortcut i have choose for:
def register():
bpy.utils.register_class(ViewExtendMenu)
#bpy.utils.register_module(__name__)
wm = bpy.context.window_manager
kc = wm.keyconfigs.addon
if kc:
km = kc.keymaps.new(name='Window')
<b>kmi = km.keymap_items.new('wm.call_menu', 'BACK_SLASH', 'PRESS', alt = True)</b> ### change if you want
#### The Type of Event
kmi.properties.name = "htk_ViewExtendMenu" ###use for manually install
def unregister():
bpy.utils.unregister_class(ViewExtendMenu)
bpy.utils.unregister_module(__name__)
wm = bpy.context.window_manager
kc = wm.keyconfigs.addon
if kc:
km = kc.keymaps['Window']
for kmi in km.keymap_items:
if kmi.idname == 'wm.call_menu':
if kmi.properties.name == "":
km.keymap_items.remove(kmi)
break
if __name__ == "__main__":
register()
Look into the zip folder > 08_Key Configurations < for the short how to.
If a Menu will not pop up, you have to go into the user prefernce and install it manually.
To add new Hotkeys use > wm.call_menu <
and the IDNAME > properties.name = “htk_ViewExtendMenu” < from the registry
You have also disable some default shortcuts, example: W for Special Menu.