Fix #26158: The layer hight of the layer tool cannot longer be controled by the strength of the brush, as it was in 2.49

Layer height used to be controlled with brush radius, quite confusing decision.
Added new property for brushes - height for adjusting affectable brush height
(it could be not only layer height in the future).
This commit is contained in:
2011-02-25 16:54:09 +00:00
parent d6f69a2c19
commit ce81cce75d
5 changed files with 23 additions and 5 deletions

View File

@@ -578,6 +578,10 @@ class VIEW3D_PT_tools_brush(PaintPanel, bpy.types.Panel):
row.active = brush.use_plane_trim
row.prop(brush, "plane_trim", slider=True, text="Distance")
if brush.sculpt_tool == 'LAYER':
row = col.row()
row.prop(brush, "height", slider=True, text="Height")
col.separator()
row = col.row()