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:
authorBastien Montagne <montagne29@wanadoo.fr>2011-08-17 17:07:51 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-08-17 17:07:51 +0400
commit58af2c36aca4e2092e699dead2bd2ea2347b5622 (patch)
tree9804df8b949ba390f36cdfe7804c7aa3ca003fc5 /release
parent236a94268eac9d5154cd0de45569e59f24952451 (diff)
vgroup_modifiers: Removed (commented out, for now) addtionnal mapping/clamping options in WeightVGEdit mod, leaving the only curve mapping stuff.
Also, updated all three modifiers with new foreachTexLink walking func.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py36
1 files changed, 18 insertions, 18 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index 30600d5534c..6370cc8942a 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -779,31 +779,31 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.label(text="Default Weight:")
col.prop(md, "default_weight", text="")
- layout.prop(md, "use_map")
- if md.use_map:
- split = layout.split()
- col = split.column()
- col.label("Input:")
- col.label("Output:")
- col = split.column()
- col.prop(md, "map_input_low", text="Min")
- col.prop(md, "map_output_low", text="Min")
- col = split.column()
- col.prop(md, "map_input_high", text="Max")
- col.prop(md, "map_output_high", text="Max")
+# layout.prop(md, "use_map")
+# if md.use_map:
+# split = layout.split()
+# col = split.column()
+# col.label("Input:")
+# col.label("Output:")
+# col = split.column()
+# col.prop(md, "map_input_low", text="Min")
+# col.prop(md, "map_output_low", text="Min")
+# col = split.column()
+# col.prop(md, "map_input_high", text="Max")
+# col.prop(md, "map_output_high", text="Max")
layout.prop(md, "use_map_curve")
if md.use_map_curve:
col = layout.column()
col.template_curve_mapping(md, "map_curve")
- layout.prop(md, "use_reverse")
+# layout.prop(md, "use_reverse")
- layout.prop(md, "use_clamp")
- if md.use_clamp:
- row = layout.row()
- row.prop(md, "clamp_weight_min")
- row.prop(md, "clamp_weight_max")
+# layout.prop(md, "use_clamp")
+# if md.use_clamp:
+# row = layout.row()
+# row.prop(md, "clamp_weight_min")
+# row.prop(md, "clamp_weight_max")
row = layout.row()
row.prop(md, "use_add")