From fd7badedd24b4f552e23c3eeff3dae77d7cbedba Mon Sep 17 00:00:00 2001 From: Brendon Murphy <meta.androcto1@gmail.com> Date: Tue, 31 Aug 2010 11:08:47 +0000 Subject: [PATCH] script clean up --- add_mesh_ant_landscape.py | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/add_mesh_ant_landscape.py b/add_mesh_ant_landscape.py index c4b625068..32d486373 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 * -- GitLab