Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-08-02 18:35:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-02 18:35:58 +0400
commit4802d6516ba5ba60076085c51683e9b4d6a92066 (patch)
tree072444380153722e2e5edb6ea65edec984254589 /add_mesh_extras.py
parent3148c0f203ba23bead40e4e037bcc9a1eb27278b (diff)
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.
Diffstat (limited to 'add_mesh_extras.py')
-rw-r--r--add_mesh_extras.py22
1 files changed, 10 insertions, 12 deletions
diff --git a/add_mesh_extras.py b/add_mesh_extras.py
index 27f37531..c76cfce0 100644
--- a/add_mesh_extras.py
+++ b/add_mesh_extras.py
@@ -17,18 +17,16 @@
# ##### END GPL LICENSE BLOCK #####
bl_addon_info = {
- 'name': 'Add Mesh: Extras',
- 'author': 'Pontiac, Fourmadmen, meta-androcto',
- 'version': '0.3',
- 'blender': (2, 5, 3),
- 'location': 'View3D > Add > Mesh > Extras',
- 'description': 'Adds Star, Wedge, Sqorus & Spindle objects.',
- 'warning': '', # used for warning icon and text in addons panel
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
- 'Scripts/Add_Mesh/Add_Extra',
- 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
- 'func=detail&aid=22457&group_id=153&atid=469',
- 'category': 'Add Mesh'}
+ "name": "Add Mesh: Extras",
+ "author": "Pontiac, Fourmadmen, meta-androcto",
+ "version": "0.3",
+ "blender": (2, 5, 3),
+ "location": "View3D > Add > Mesh > Extras",
+ "description": "Adds Star, Wedge, Sqorus & Spindle objects.",
+ "warning": "",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_Mesh/Add_Extra",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=22457&group_id=153&atid=469",
+ "category": "Add Mesh"}
import bpy
from mathutils import *