Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_paint_common.py
| Show First 20 Lines • Show All 650 Lines • ▼ Show 20 Lines | if mode == 'SCULPT': | ||||
| layout.prop(brush, "use_pose_ik_anchored") | layout.prop(brush, "use_pose_ik_anchored") | ||||
| layout.prop(brush, "use_connected_only") | layout.prop(brush, "use_connected_only") | ||||
| layout.prop(brush, "disconnected_distance_max") | layout.prop(brush, "disconnected_distance_max") | ||||
| layout.separator() | layout.separator() | ||||
| elif sculpt_tool == 'CLOTH': | elif sculpt_tool == 'CLOTH': | ||||
| layout.separator() | layout.separator() | ||||
| layout.prop(brush, "cloth_simulation_area_type") | |||||
| if brush.cloth_simulation_area_type == 'LOCAL': | |||||
| 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.prop(brush, "use_cloth_pin_simulation_boundary") | layout.prop(brush, "use_cloth_pin_simulation_boundary") | ||||
| 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_constraint_softbody_strength") | layout.prop(brush, "cloth_constraint_softbody_strength") | ||||
| layout.separator() | layout.separator() | ||||
| ▲ Show 20 Lines • Show All 596 Lines • Show Last 20 Lines | |||||