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>2010-08-31 15:08:47 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2010-08-31 15:08:47 +0400
commitfd7badedd24b4f552e23c3eeff3dae77d7cbedba (patch)
tree8b51e974a93778bc1c4c9abb1ec72b76ce88a9fd /add_mesh_ant_landscape.py
parentc223dfe359731c94abdc34bcfcce8c76f741ef2c (diff)
script clean up
Diffstat (limited to 'add_mesh_ant_landscape.py')
-rw-r--r--add_mesh_ant_landscape.py31
1 files changed, 15 insertions, 16 deletions
diff --git a/add_mesh_ant_landscape.py b/add_mesh_ant_landscape.py
index c4b62506..32d48637 100644
--- a/add_mesh_ant_landscape.py
+++ b/add_mesh_ant_landscape.py
@@ -16,6 +16,21 @@
#
# ##### END GPL LICENSE BLOCK #####
+bl_addon_info = {
+ "name": "ANT Landscape",
+ "author": "Jimmy Hazevoet",
+ "version": (0,1,0),
+ "blender": (2, 5, 3),
+ "api": 31667,
+ "location": "Add Mesh menu",
+ "description": "Adds a landscape primitive",
+ "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/ANT_Landscape",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?"\
+ "func=detail&aid=23130&group_id=153&atid=469",
+ "category": "Add Mesh"}
+
'''
Another Noise Tool: Landscape mesh generator
@@ -54,22 +69,6 @@ Strata: Strata amount, number of strata/terrace layers.
Strata type: Strata types, Smooth, Sharp-sub, Sharp-add
'''
-
-bl_addon_info = {
- "name": "ANT Landscape",
- "author": "Jimmy Hazevoet",
- "version": (0,1,0),
- "blender": (2, 5, 3),
- "api": 31667,
- "location": "Add Mesh menu",
- "description": "Adds a landscape primitive",
- "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/ANT_Landscape",
- "tracker_url": "https://projects.blender.org/tracker/index.php?"\
- "func=detail&aid=23130&group_id=153&atid=469",
- "category": "Add Mesh"}
-
# import modules
import bpy
from bpy.props import *