From 4802d6516ba5ba60076085c51683e9b4d6a92066 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Aug 2010 14:35:58 +0000 Subject: fix for registering scripts. - mesh_surface_sketch.py - render_renderfarmfi.py - space_view3d_align_tools.py - object_cloud_gen.py also move bl_addon_info to the top for faster parsing. --- space_view3d_materials_utils.py | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) (limited to 'space_view3d_materials_utils.py') diff --git a/space_view3d_materials_utils.py b/space_view3d_materials_utils.py index 5da32b01..0cbfa0dd 100644 --- a/space_view3d_materials_utils.py +++ b/space_view3d_materials_utils.py @@ -22,6 +22,18 @@ # # ##### END GPL LICENSE BLOCK ##### +bl_addon_info = { + "name": "3D View: Material Utils", + "author": "michaelw", + "version": "1.3", + "blender": (2, 5, 3), + "location": "View3D > Q key", + "description": "Menu of material tools (assign, select by etc) in the 3D View", + "warning": "", + "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/3D interaction/Materials Utils", + "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=22140&group_id=153&atid=469", + "category": "3D View"} + """ This script has several functions and operators... grouped for convenience * assign material: @@ -47,21 +59,6 @@ This script has several functions and operators... grouped for convenience """ -bl_addon_info = { - 'name': '3D View: Material Utils', - 'author': 'michaelw', - 'version': '1.3', - 'blender': (2, 5, 3), - 'location': 'View3D > Q key', - 'description': 'Menu of material tools (assign, select by etc) in the 3D View', - 'warning': '', # used for warning icon and text in addons panel - 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \ - 'Scripts/3D interaction/Materials Utils', - 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\ - 'func=detail&aid=22140&group_id=153&atid=469', - 'category': '3D View'} - - import bpy from bpy.props import* -- cgit v1.2.3