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:
Diffstat (limited to 'add_mesh_gemstones.py')
-rw-r--r--add_mesh_gemstones.py26
1 files changed, 12 insertions, 14 deletions
diff --git a/add_mesh_gemstones.py b/add_mesh_gemstones.py
index ad0177e6..645f509d 100644
--- a/add_mesh_gemstones.py
+++ b/add_mesh_gemstones.py
@@ -16,25 +16,23 @@
#
# ##### END GPL LICENSE BLOCK #####
+bl_addon_info = {
+ "name": "Add Mesh: Gemstones",
+ "author": "Pontiac, Fourmadmen, Dreampainter",
+ "version": "0.3",
+ "blender": (2, 5, 3),
+ "location": "View3D > Add > Mesh > Gemstones",
+ "description": "Adds various gemstone (Diamond & Gem) meshes.",
+ "warning": "",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_Mesh/Add_Gemstones",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=21432&group_id=153&atid=469",
+ "category": "Add Mesh"}
+
import bpy
from mathutils import *
from math import *
from bpy.props import *
-bl_addon_info = {
- 'name': 'Add Mesh: Gemstones',
- 'author': 'Pontiac, Fourmadmen, Dreampainter',
- 'version': '0.3',
- 'blender': (2, 5, 3),
- 'location': 'View3D > Add > Mesh > Gemstones',
- 'description': 'Adds various gemstone (Diamond & Gem) meshes.',
- '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_Gemstones',
- 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
- 'func=detail&aid=21432&group_id=153&atid=469',
- 'category': 'Add Mesh'}
-
# calculates the matrix for the new object
# depending on user pref
def align_matrix(context):