Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_view3d_toolbar.py
| Show First 20 Lines • Show All 420 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| col.separator() | col.separator() | ||||
| row = col.row() | row = col.row() | ||||
| row.prop(brush, "elastic_deform_type") | row.prop(brush, "elastic_deform_type") | ||||
| row = col.row() | row = col.row() | ||||
| row.prop(brush, "elastic_deform_volume_preservation", slider=True) | row.prop(brush, "elastic_deform_volume_preservation", slider=True) | ||||
| elif brush.sculpt_tool == 'POSE': | elif brush.sculpt_tool == 'POSE': | ||||
| row = col.row() | row = col.row() | ||||
| row.prop(brush, "pose_offset") | row.prop(brush, "pose_offset") | ||||
| row = col.row() | |||||
| row.prop(brush, "pose_smooth_iterations") | |||||
| elif brush.sculpt_tool == 'GRAB': | elif brush.sculpt_tool == 'GRAB': | ||||
| col.separator() | col.separator() | ||||
| row = col.row() | row = col.row() | ||||
| row.prop(brush, "use_grab_active_vertex") | row.prop(brush, "use_grab_active_vertex") | ||||
| # topology_rake_factor | # topology_rake_factor | ||||
| if ( | if ( | ||||
| capabilities.has_topology_rake and | capabilities.has_topology_rake and | ||||
| ▲ Show 20 Lines • Show All 1,866 Lines • Show Last 20 Lines | |||||