Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_view3d_toolbar.py
| Show First 20 Lines • Show All 427 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| col.separator() | col.separator() | ||||
| row = col.row() | row = col.row() | ||||
| row.prop(brush, "use_automasking_topology") | row.prop(brush, "use_automasking_topology") | ||||
| if brush.sculpt_tool == 'GRAB': | if 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") | ||||
| row = col.row() | |||||
| row.prop(brush, "show_dynamic_mesh_preview") | |||||
| # topology_rake_factor | # topology_rake_factor | ||||
| if ( | if ( | ||||
| capabilities.has_topology_rake and | capabilities.has_topology_rake and | ||||
| context.sculpt_object.use_dynamic_topology_sculpting | context.sculpt_object.use_dynamic_topology_sculpting | ||||
| ): | ): | ||||
| row = col.row() | row = col.row() | ||||
| row.prop(brush, "topology_rake_factor", slider=True) | row.prop(brush, "topology_rake_factor", slider=True) | ||||
| ▲ Show 20 Lines • Show All 1,868 Lines • Show Last 20 Lines | |||||