Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2012-03-26 02:14:21 +0400
committerThomas Dinges <blender@dingto.org>2012-03-26 02:14:21 +0400
commitaede928bdc7902bb81ebb00b286dc5064cf54dd6 (patch)
treec85380cf5bcf06bcc7c3162dc661083571d75322 /release
parentc379b78d8a00a0960346656d3e38aacd56974572 (diff)
Patch: [#30652] Influence slider for Lattice Modifier
* This patch adds a influence slider for the lattice modifier, which affects the strength of the deformation. Patch by Patrick Boelens (senshi), thanks a lot!
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index d45ad64e7e0..cbf354b2078 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -318,6 +318,9 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col = split.column()
col.label(text="Vertex Group:")
col.prop_search(md, "vertex_group", ob, "vertex_groups", text="")
+
+ layout.separator()
+ layout.prop(md, "influence", slider=True)
def MASK(self, layout, ob, md):
split = layout.split()