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:
authorBrendon Murphy <meta.androcto1@gmail.com>2011-09-06 05:41:51 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2011-09-06 05:41:51 +0400
commit9857638d19c33ee7f0121bac28b8f0ff45ffcdb2 (patch)
tree80d5013b9708744c5dc2854b5ec004c29bdd75c4 /add_mesh_extra_objects/__init__.py
parentf35684c538fa8e11940df3c24111be237d8ab254 (diff)
Added Polysphere object thanks to metalliandy.
Updated version & bl_info, Added Authors to the base of gpl block as the list was too long.
Diffstat (limited to 'add_mesh_extra_objects/__init__.py')
-rw-r--r--add_mesh_extra_objects/__init__.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/add_mesh_extra_objects/__init__.py b/add_mesh_extra_objects/__init__.py
index 6cdee238..d1b8ddcb 100644
--- a/add_mesh_extra_objects/__init__.py
+++ b/add_mesh_extra_objects/__init__.py
@@ -15,11 +15,12 @@
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
+# Contributed to by Pontiac, Fourmadmen, varkenvarken, tuga3d, meta-androcto, metalliandy #
bl_info = {
"name": "Extra Objects",
- "author": "Pontiac, Fourmadmen, varkenvarken, tuga3d, meta-androcto",
- "version": (0, 1),
+ "author": "Multiple Authors",
+ "version": (0, 2),
"blender": (2, 5, 9),
"api": 39933,
"location": "View3D > Add > Mesh > Extra Objects",
@@ -39,12 +40,14 @@ if "bpy" in locals():
imp.reload(add_mesh_gemstones)
imp.reload(add_mesh_gears)
imp.reload(add_mesh_3d_function_surface)
+ imp.reload(add_mesh_polysphere)
else:
from . import add_mesh_extra_objects
from . import add_mesh_twisted_torus
from . import add_mesh_gemstones
from . import add_mesh_gears
from . import add_mesh_3d_function_surface
+ from . import add_mesh_polysphere
import bpy
@@ -63,6 +66,8 @@ class INFO_MT_mesh_extras_add(bpy.types.Menu):
layout.menu("INFO_MT_mesh_basic_add", text="Basic Objects")
layout.operator("mesh.primitive_twisted_torus_add",
text="Twisted Torus")
+ layout.operator("mesh.primitive_polysphere_add",
+ text="Polysphere")
class INFO_MT_mesh_gemstones_add(bpy.types.Menu):