Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_paint_common.py
| Show First 20 Lines • Show All 680 Lines • ▼ Show 20 Lines | if mode == 'SCULPT': | ||||
| col.prop(brush, "density") | col.prop(brush, "density") | ||||
| col.prop(brush, "tip_roundness") | col.prop(brush, "tip_roundness") | ||||
| col.prop(brush, "tip_scale_x") | col.prop(brush, "tip_scale_x") | ||||
| if brush.sculpt_tool == 'SMEAR': | if brush.sculpt_tool == 'SMEAR': | ||||
| col = layout.column() | col = layout.column() | ||||
| col.prop(brush, "smear_deform_type") | col.prop(brush, "smear_deform_type") | ||||
| if brush.sculpt_tool == 'TOPOLOGY': | |||||
| col = layout.column() | |||||
| col.prop(brush, "slide_deform_type") | |||||
| if brush.sculpt_tool == 'MULTIPLANE_SCRAPE': | if brush.sculpt_tool == 'MULTIPLANE_SCRAPE': | ||||
| col = layout.column() | col = layout.column() | ||||
| col.prop(brush, "multiplane_scrape_angle") | col.prop(brush, "multiplane_scrape_angle") | ||||
| col.prop(brush, "use_multiplane_scrape_dynamic") | col.prop(brush, "use_multiplane_scrape_dynamic") | ||||
| col.prop(brush, "show_multiplane_scrape_planes_preview") | col.prop(brush, "show_multiplane_scrape_planes_preview") | ||||
| if brush.sculpt_tool == 'SMOOTH': | if brush.sculpt_tool == 'SMOOTH': | ||||
| col = layout.column() | col = layout.column() | ||||
| ▲ Show 20 Lines • Show All 533 Lines • Show Last 20 Lines | |||||