Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_paint_common.py
| Show First 20 Lines • Show All 632 Lines • ▼ Show 20 Lines | if mode == 'SCULPT': | ||||
| layout.prop(brush, "cloth_sim_limit") | layout.prop(brush, "cloth_sim_limit") | ||||
| layout.prop(brush, "cloth_sim_falloff") | layout.prop(brush, "cloth_sim_falloff") | ||||
| layout.separator() | layout.separator() | ||||
| layout.prop(brush, "cloth_deform_type") | layout.prop(brush, "cloth_deform_type") | ||||
| layout.prop(brush, "cloth_force_falloff_type") | layout.prop(brush, "cloth_force_falloff_type") | ||||
| layout.separator() | layout.separator() | ||||
| layout.prop(brush, "cloth_mass") | layout.prop(brush, "cloth_mass") | ||||
| layout.prop(brush, "cloth_damping") | layout.prop(brush, "cloth_damping") | ||||
| layout.prop(brush, "cloth_tension") | |||||
| layout.prop(brush, "cloth_shearing") | |||||
| layout.prop(brush, "cloth_bending") | |||||
| layout.separator() | layout.separator() | ||||
| if brush.sculpt_tool == 'SCRAPE': | if brush.sculpt_tool == 'SCRAPE': | ||||
| row = layout.row() | row = layout.row() | ||||
| row.prop(brush, "area_radius_factor", slider=True) | row.prop(brush, "area_radius_factor", slider=True) | ||||
| row = layout.row() | row = layout.row() | ||||
| row.prop(brush, "invert_to_scrape_fill", text="Invert to Fill") | row.prop(brush, "invert_to_scrape_fill", text="Invert to Fill") | ||||
| ▲ Show 20 Lines • Show All 550 Lines • Show Last 20 Lines | |||||