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:
authorJimmy Hazevoet <jimhazevoet@gmail.com>2017-07-10 04:50:38 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-07-10 04:50:38 +0300
commitf22dcd3f8018835d900fe033265c6e46a9d3c71a (patch)
tree000f1d1b035aea64d935f72226d849b09fa34bbc /ant_landscape/__init__.py
parent9bde6ff5aca89f7a713aa4eb141c81783d72d01d (diff)
ant landscape fix for noise types part1
Diffstat (limited to 'ant_landscape/__init__.py')
-rw-r--r--ant_landscape/__init__.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/ant_landscape/__init__.py b/ant_landscape/__init__.py
index 60dd81a1..25d4be9b 100644
--- a/ant_landscape/__init__.py
+++ b/ant_landscape/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "A.N.T.Landscape",
- "author": "Jim Hazevoet",
+ "author": "Jimmy Hazevoet",
"version": (0, 1, 8),
"blender": (2, 78, 0),
"location": "View3D > Tool Shelf",
@@ -375,7 +375,7 @@ class AntDisplaceSettingsPanel(bpy.types.Panel):
col = box.column()
col.prop(ant, "strata")
col = box.column()
- col.prop(ant, "use_vgroup", toggle=True)
+ col.prop_search(ant, "vert_group", ob, "vertex_groups")
# ------------------------------------------------------------
@@ -724,10 +724,9 @@ class AntLandscapePropertiesGroup(bpy.types.PropertyGroup):
max=10000.0,
description="Minimum, flattens terrain at seabed level"
)
- use_vgroup = BoolProperty(
- name="Vertex Group Weight",
- default=False,
- description="Use active vertex group weight"
+ vert_group = StringProperty(
+ name="Vertex Group",
+ default=""
)
strata = FloatProperty(
name="Amount",