Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_view3d.py
| Show First 20 Lines • Show All 496 Lines • ▼ Show 20 Lines | def SCULPT_CURVES(context, layout, tool): | ||||
| layout, | layout, | ||||
| context, | context, | ||||
| brush, | brush, | ||||
| "strength", | "strength", | ||||
| unified_name="use_unified_strength", | unified_name="use_unified_strength", | ||||
| header=True | header=True | ||||
| ) | ) | ||||
| if brush.curves_sculpt_tool == 'COMB': | |||||
| layout.prop(brush, "falloff_shape", expand=True) | |||||
| layout.prop(brush, "curve_preset") | |||||
| if brush.curves_sculpt_tool == 'ADD': | if brush.curves_sculpt_tool == 'ADD': | ||||
| layout.prop(brush, "use_frontface") | layout.prop(brush, "use_frontface") | ||||
| layout.prop(brush, "falloff_shape", expand=True) | layout.prop(brush, "falloff_shape", expand=True) | ||||
| layout.prop(brush.curves_sculpt_settings, "add_amount") | layout.prop(brush.curves_sculpt_settings, "add_amount") | ||||
| layout.prop(tool_settings.curves_sculpt, "curve_length") | layout.prop(tool_settings.curves_sculpt, "curve_length") | ||||
| layout.prop(tool_settings.curves_sculpt, "interpolate_length") | layout.prop(tool_settings.curves_sculpt, "interpolate_length") | ||||
| layout.prop(tool_settings.curves_sculpt, "interpolate_shape") | layout.prop(tool_settings.curves_sculpt, "interpolate_shape") | ||||
| ▲ Show 20 Lines • Show All 7,303 Lines • Show Last 20 Lines | |||||